mirror of
https://github.com/xuthus83/pigallery2.git
synced 2024-11-03 21:04:03 +08:00
Merge pull request #844 from mblythe86/ext_excludeDir
Add excludeDir to extension interface
This commit is contained in:
commit
eb36707062
@ -55,6 +55,7 @@ export class ExtensionManager implements IObjectManager {
|
||||
invalidateDirectoryCovers: new ExtensionEvent(),
|
||||
},
|
||||
DiskManager: {
|
||||
excludeDir: new ExtensionEvent(),
|
||||
scanDirectory: new ExtensionEvent()
|
||||
},
|
||||
ImageRenderer: {
|
||||
|
@ -73,6 +73,11 @@ export interface IExtensionEvents {
|
||||
* photos, videos and metafiles
|
||||
*/
|
||||
DiskManager: {
|
||||
excludeDir: IExtensionEvent<[{
|
||||
name: string,
|
||||
parentDirRelativeName: string,
|
||||
parentDirAbsoluteName: string
|
||||
}], boolean>,
|
||||
scanDirectory: IExtensionEvent<[
|
||||
string,
|
||||
DirectoryScanSettings], ParentDirectoryDTO>
|
||||
|
@ -49,19 +49,20 @@ export class DiskManager {
|
||||
return path.basename(dirPath);
|
||||
}
|
||||
|
||||
public static async excludeDir(
|
||||
@ExtensionDecorator(e => e.gallery.DiskManager.excludeDir)
|
||||
public static async excludeDir(dir: {
|
||||
name: string,
|
||||
relativeDirectoryName: string,
|
||||
absoluteDirectoryName: string
|
||||
): Promise<boolean> {
|
||||
parentDirRelativeName: string,
|
||||
parentDirAbsoluteName: string
|
||||
}): Promise<boolean> {
|
||||
if (
|
||||
Config.Indexing.excludeFolderList.length === 0 &&
|
||||
Config.Indexing.excludeFileList.length === 0
|
||||
) {
|
||||
return false;
|
||||
}
|
||||
const absoluteName = path.normalize(path.join(absoluteDirectoryName, name));
|
||||
const relativeName = path.normalize(path.join(relativeDirectoryName, name));
|
||||
const absoluteName = path.normalize(path.join(dir.parentDirAbsoluteName, dir.name));
|
||||
const relativeName = path.normalize(path.join(dir.parentDirRelativeName, dir.name));
|
||||
|
||||
for (const exclude of Config.Indexing.excludeFolderList) {
|
||||
if (exclude.startsWith('/')) {
|
||||
@ -73,7 +74,7 @@ export class DiskManager {
|
||||
return true;
|
||||
}
|
||||
} else {
|
||||
if (exclude === name) {
|
||||
if (exclude === dir.name) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
@ -155,11 +156,11 @@ export class DiskManager {
|
||||
if (
|
||||
settings.noDirectory === true ||
|
||||
settings.coverOnly === true ||
|
||||
(await DiskManager.excludeDir(
|
||||
file,
|
||||
relativeDirectoryName,
|
||||
absoluteDirectoryName
|
||||
))
|
||||
(await DiskManager.excludeDir({
|
||||
name: file,
|
||||
parentDirRelativeName: relativeDirectoryName,
|
||||
parentDirAbsoluteName: absoluteDirectoryName
|
||||
}))
|
||||
) {
|
||||
continue;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user