135 lines
4.0 KiB
JavaScript
135 lines
4.0 KiB
JavaScript
/**---------------------
|
|
* @name tykayn Rangement
|
|
* @description Rangement sorts and rename files depending on their exif data
|
|
* @contact contact@cipherbliss.com
|
|
--------------------- */
|
|
/** ---------------------
|
|
libs
|
|
--------------------- */
|
|
import fs from 'node-fs'
|
|
import minimist from 'minimist'
|
|
/** ---------------------
|
|
custom utilities and configuration
|
|
--------------------- */
|
|
import { enableTestsLocally, reportStatistics,tagSectionSeparator, tagSeparator } from './configs.mjs'
|
|
import {
|
|
TestFindFormattedDate,
|
|
TestScreenShotIsFoundAndRenamed,
|
|
TestTagsAreDetectedInFileName
|
|
} from './testFunctions.mjs'
|
|
import finder from './finder.mjs'
|
|
|
|
let mini_arguments
|
|
console.log(' ')
|
|
|
|
function parseArguments () {
|
|
mini_arguments = minimist(process.argv.slice(2))
|
|
console.log('arguments', mini_arguments)
|
|
}
|
|
|
|
parseArguments()
|
|
|
|
function renameFile (originalFileName, fileMixedNewName) {
|
|
fs.rename(originalFileName, fileMixedNewName, function (err) {
|
|
if (err) console.log('rename ERROR: ' + err)
|
|
})
|
|
}
|
|
|
|
function appendFileName (fileProperties, newText) {
|
|
fileProperties.freeText = finder.cleanSpaces(fileProperties.freeText + ' ' + newText)
|
|
return fileProperties
|
|
}
|
|
|
|
function prependFileName (fileProperties, newText) {
|
|
fileProperties.freeText = finder.cleanSpaces(newText + ' ' + fileProperties.freeText)
|
|
return fileProperties
|
|
}
|
|
|
|
function makeFileNameFromProperties(fileProperties) {
|
|
|
|
let tagPlace = ''
|
|
if (fileProperties.tags.length) {
|
|
tagPlace = ' ' + tagSectionSeparator + ' '
|
|
}
|
|
// return finder.cleanSpaces(fileProperties.dateStamp + ' ' + fileProperties.freeText + tagPlace + fileProperties.tags.join(tagSeparator) + fileProperties.extension).replace(+' ' + tagSectionSeparator + ' ' + '.', '.')
|
|
return ''+fileProperties.dateStampExif + ' ' + fileProperties.freeText + tagPlace + fileProperties.tags.join(tagSeparator) + fileProperties.extension
|
|
}
|
|
|
|
function shouldWeChangeName (structureForFile) {
|
|
console.log(' ______ allez hop fini la recherche on fait un nouveau nom')
|
|
console.log('structureForFile', structureForFile)
|
|
let newName = makeFileNameFromProperties(structureForFile)
|
|
if (structureForFile.fileNameOriginal !== newName) {
|
|
|
|
console.log('\n ancien nom :', structureForFile.fileNameOriginal)
|
|
// console.log(' nouveau nom:', foundDate +structureForFile.freeText + structureForFile.tags.join(tagSeparator) + structureForFile.extension )
|
|
console.log(' nouveau nom:', newName)
|
|
} else {
|
|
console.log(' rien à changer')
|
|
}
|
|
|
|
}
|
|
|
|
async function guessFileNameOnAllFilesFromArguments () {
|
|
|
|
// parcourir les dossiers
|
|
// parcourir les fichiers
|
|
|
|
console.log('liste des fichiers', mini_arguments._)
|
|
let fileList = mini_arguments._
|
|
|
|
fileList.forEach(fullPath => {
|
|
|
|
let structureForFile = finder.destructurateFileName(fullPath)
|
|
|
|
// examiner les infos exif de chaque fichier pour proposer un nouveau nom
|
|
if (!structureForFile.dateStampInFileNameOriginal) {
|
|
console.log(' le nom de fichier ne contient pas de date formatée au début')
|
|
|
|
finder.findExifCreationDate(structureForFile.fullPath)
|
|
.then(data => {
|
|
console.log(' ... chercher la date de création')
|
|
let foundDate = finder.findEarliestDateInExifData(data)
|
|
|
|
console.log(' =>>>>>>> foundDate : ', foundDate)
|
|
if (foundDate) {
|
|
|
|
|
|
// finder.findEarliestDateInExifData(fullPath).then(response => {
|
|
// console.log(' ... trouvée')
|
|
// if (response) {
|
|
structureForFile.dateStampExif = foundDate
|
|
|
|
shouldWeChangeName(structureForFile)
|
|
// }
|
|
// })
|
|
|
|
} else {
|
|
console.log('pas de date trouvée dans le nom')
|
|
}
|
|
|
|
}
|
|
,
|
|
(error) => {
|
|
console.log('/////////// Error in reading exif of file: ' + error.message)
|
|
return ''
|
|
})
|
|
}
|
|
}
|
|
)
|
|
|
|
}
|
|
|
|
guessFileNameOnAllFilesFromArguments()
|
|
|
|
// run tests
|
|
if (enableTestsLocally) {
|
|
|
|
TestTagsAreDetectedInFileName()
|
|
TestFindFormattedDate()
|
|
TestScreenShotIsFoundAndRenamed()
|
|
}
|
|
if (reportStatistics || mini_arguments.stats) {
|
|
finder.reportStatistics()
|
|
}
|