-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
41 lines (32 loc) · 1.02 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#!/usr/bin/env node
'use strict';
const ExifReader = require('exifreader');
const exifErrors = ExifReader.errors;
const {program} = require('commander');
program
.version(require('./package.json').version)
.usage('<file ...> [options]')
.parse(process.argv);
const files = program.args;
console.info('Number of files to check: ' + files.length);
let hasexif = false;
let haserror = false;
files.forEach(function(filePath) {
console.log('Checking: ' + filePath);
ExifReader.load(filePath, {expanded: true}).then(function(tags) {
if (tags.exif && Object.keys(tags.exif).length !== 0) {
console.log('ERROR: Exif data found for: ' + filePath);
hasexif = true;
}
}).catch(function(error) {
if (error instanceof exifErrors.MetadataMissingError === false) {
console.log('ERROR: ' + error + ' for:' + filePath);
haserror = true;
}
});
});
process.on('exit', function() {
if (hasexif || haserror) {
process.exit(1);
}
});