up renaming
This commit is contained in:
parent
91a61d2c07
commit
1c1f9ed5fd
@ -32,7 +32,7 @@ class config_rangement {
|
|||||||
base_archive_folder = constants.base_archive_folder
|
base_archive_folder = constants.base_archive_folder
|
||||||
templates = mainTemplates;
|
templates = mainTemplates;
|
||||||
statistics = {};
|
statistics = {};
|
||||||
keepOriginalNameInRename = true;
|
keepOriginalNameInRename = false;
|
||||||
log_actions = true;
|
log_actions = true;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -96,9 +96,9 @@ export default class finder {
|
|||||||
} else {
|
} else {
|
||||||
log.debug(' -------- dateStampInFileNameOriginal: ', structureForFile.dateStampInFileNameOriginal)
|
log.debug(' -------- dateStampInFileNameOriginal: ', structureForFile.dateStampInFileNameOriginal)
|
||||||
}
|
}
|
||||||
let fetchplace = cwd+'/'+structureForFile.fullPath
|
|
||||||
log.debug(' -------- trouver les infos exif', fetchplace)
|
log.debug(' -------- trouver les infos exif', structureForFile.fullPath)
|
||||||
this.findExifCreationDate(fetchplace)
|
this.findExifCreationDate(structureForFile.fullPath)
|
||||||
.then(data => {
|
.then(data => {
|
||||||
log.info(' ... chercher la date de création : "' + structureForFile.freeText + '"')
|
log.info(' ... chercher la date de création : "' + structureForFile.freeText + '"')
|
||||||
log.debug('data', data)
|
log.debug('data', data)
|
||||||
@ -146,12 +146,14 @@ export default class finder {
|
|||||||
|
|
||||||
static renameFile(originalFileName: string, fileMixedNewName: string) {
|
static renameFile(originalFileName: string, fileMixedNewName: string) {
|
||||||
if (rangement_instance.keepOriginalNameInRename) {
|
if (rangement_instance.keepOriginalNameInRename) {
|
||||||
|
log.debug(' +++++++++ on ajoute le nom original dans le free text +++++++',originalFileName )
|
||||||
fileMixedNewName = this.addOriginalFileNameIfMissing(originalFileName, fileMixedNewName)
|
fileMixedNewName = this.addOriginalFileNameIfMissing(originalFileName, fileMixedNewName)
|
||||||
|
log.debug(' +++++++++ nouveau nom', fileMixedNewName)
|
||||||
}
|
}
|
||||||
|
|
||||||
let self = this;
|
let self = this;
|
||||||
fs.rename(originalFileName, fileMixedNewName, function (err) {
|
fs.rename(originalFileName, fileMixedNewName, function (err) {
|
||||||
log.info('name changed', fileMixedNewName)
|
log.info(' ✅ name changed', fileMixedNewName)
|
||||||
if (err) {
|
if (err) {
|
||||||
log.info('rename ERROR: ' + err)
|
log.info('rename ERROR: ' + err)
|
||||||
} else {
|
} else {
|
||||||
@ -198,10 +200,10 @@ export default class finder {
|
|||||||
log.debug('fileProperties.dateStampExif', fileProperties.dateStampExif)
|
log.debug('fileProperties.dateStampExif', fileProperties.dateStampExif)
|
||||||
let newName = ''
|
let newName = ''
|
||||||
+ fileProperties.dateStampExif
|
+ fileProperties.dateStampExif
|
||||||
+ ' '
|
// + ' '
|
||||||
+ (rangement_instance.keepFreeText ? fileProperties.freeText : '')
|
+ (rangement_instance.keepFreeText ? fileProperties.freeText : '')
|
||||||
+ tagPlace
|
+ tagPlace.trim()
|
||||||
+ fileProperties.extension
|
+ fileProperties.extension.trim()
|
||||||
|
|
||||||
if (rangement_instance.replaceUnderscoreWithSpaces) {
|
if (rangement_instance.replaceUnderscoreWithSpaces) {
|
||||||
newName = newName.replace('_', ' ')
|
newName = newName.replace('_', ' ')
|
||||||
@ -224,14 +226,22 @@ export default class finder {
|
|||||||
log.info(' ______ shouldWeChangeName ', structureForFile.fileNameOriginal)
|
log.info(' ______ shouldWeChangeName ', structureForFile.fileNameOriginal)
|
||||||
let newName = this.makeFileNameFromProperties(structureForFile)
|
let newName = this.makeFileNameFromProperties(structureForFile)
|
||||||
log.debug('newName', newName)
|
log.debug('newName', newName)
|
||||||
if (structureForFile.fileNameOriginal !== newName && !this.otherRenames.includes(newName)) {
|
if(this.otherRenames.includes(newName)){
|
||||||
|
log.debug('nouveau nom déjà présent dans les fichiers déjà renommés, on garde en état actuel')
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (structureForFile.fileNameOriginal !== newName) {
|
||||||
|
|
||||||
log.info('\n ancien nom :', structureForFile.fileNameOriginal)
|
log.info('\n ancien nom :', structureForFile.fileNameOriginal)
|
||||||
|
|
||||||
log.info(' nouveau nom:', newName)
|
log.info(' nouveau nom:', newName)
|
||||||
if (!this.mini_arguments['dry-run']) {
|
if (!this.mini_arguments['dry-run']) {
|
||||||
|
|
||||||
this.renameFile(structureForFile.fullPath, structureForFile.folderPath + newName)
|
log.debug('___________ structureForFile.folderPath', structureForFile.folderPath)
|
||||||
|
log.debug('___________ newName', newName)
|
||||||
|
|
||||||
|
this.renameFile(structureForFile.fullPath,
|
||||||
|
structureForFile.folderPath + newName)
|
||||||
} else {
|
} else {
|
||||||
log.info('no renaming for real, this is a dry run')
|
log.info('no renaming for real, this is a dry run')
|
||||||
finder.statistics['filesNotModified']++
|
finder.statistics['filesNotModified']++
|
||||||
@ -331,7 +341,7 @@ export default class finder {
|
|||||||
}
|
}
|
||||||
|
|
||||||
static cleanSpaces(inputString: string) {
|
static cleanSpaces(inputString: string) {
|
||||||
return inputString.trim().replace(/ *g/, ' ').replace(/ /, ' ')
|
return inputString.replace(/ *g/, ' ').replace(/ /, ' ').trim()
|
||||||
}
|
}
|
||||||
|
|
||||||
static searchAndReplaceInFileName(searchString: string, replaceString: string, fileName: string): string {
|
static searchAndReplaceInFileName(searchString: string, replaceString: string, fileName: string): string {
|
||||||
@ -422,12 +432,17 @@ export default class finder {
|
|||||||
*/
|
*/
|
||||||
static destructurateFileName(fullPath: string): fileDestructuration {
|
static destructurateFileName(fullPath: string): fileDestructuration {
|
||||||
let [folderPath, fileNameOriginal] = this.findFolderPath(fullPath)
|
let [folderPath, fileNameOriginal] = this.findFolderPath(fullPath)
|
||||||
let dateStampInFileNameOriginal = this.findFormattedDate(fileNameOriginal)
|
|
||||||
|
// if path is relative, add the current working directory as full path part
|
||||||
|
if (/^\\(?!\\)/.test(fullPath)) {
|
||||||
|
fullPath = cwd + '/' + fullPath
|
||||||
|
}
|
||||||
|
|
||||||
return {
|
return {
|
||||||
fullPath,
|
fullPath,
|
||||||
folderPath,
|
folderPath,
|
||||||
fileNameOriginal,
|
fileNameOriginal,
|
||||||
dateStampInFileNameOriginal,
|
dateStampInFileNameOriginal: this.findFormattedDate(fileNameOriginal),
|
||||||
dateStampExif: '',
|
dateStampExif: '',
|
||||||
freeText: this.findFileNameFreeTextPart(fileNameOriginal),
|
freeText: this.findFileNameFreeTextPart(fileNameOriginal),
|
||||||
tags: this.findTagSectionInString(fileNameOriginal),
|
tags: this.findTagSectionInString(fileNameOriginal),
|
||||||
|
Loading…
Reference in New Issue
Block a user