-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
125 lines (113 loc) · 3.49 KB
/
main.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
const fs = require('fs');
const fbUpload = require('./index.js');
const winston = require('winston');
const logger = winston.createLogger({
"level": "info",
format: winston.format.combine(
winston.format.timestamp(),
winston.format.align(),
winston.format.printf(info => `${info.timestamp} [${info.level.toUpperCase()}]: ${info.message}`)
),
transports: [
new winston.transports.Console(),
// new winston.transports.File({ filename: 'combined.log' })
]
});
const c_ONEDAY_IN_SECONDS = 60 * 60 * 24
var c_PAGE_SCHEDULE_ARGS = {
"published": false,
"secret": false,
"scheduled_publish_time": Math.round(new Date().getTime() / 1000) + c_ONEDAY_IN_SECONDS,
}
var c_PAGE_PUBLISH_NOW_ARGS = {
"published": true,
"secret": false,
}
const yargs_parser = require('yargs-parser')
/**
* rmEmptyArgs.
*
* @param {object} args
*/
function rmEmptyArgs(args) {
var keys = Object.keys(args);
for (const k of keys) {
var v = args[k];
if (v === null || v === undefined){
delete args[k]
} else if (Array.isArray(v) && v.length === 0) {
delete args[k];
} else if (typeof(v) === "string" && v.length === 0){
delete args[k];
} else if (typeof(v) === "object" && Object.keys(v).length === 0) {
delete args[k];
}
}
}
/**
* main.
*
* @param {object} args
* @param {string} jsonFileConfig
*/
async function main(args) {
var videoId = -1;
var defaultConfig = {};
if(args.jsonFileConfig) {
let rawdata = fs.readFileSync(jsonFileConfig);
defaultConfig = JSON.parse(rawdata);
delete args.jsonFileConfig;
}
var runArgs = {};
var keys = [].concat(Object.keys(args), Object.keys(defaultConfig));
for (const k of keys) {
runArgs[k] = args[k] || defaultConfig[k] || null;
}
rmEmptyArgs(runArgs);
for (const k of ['file']){
if (!runArgs[k]) {
logger.error(`No such field '${k}' in ${JSON.stringify(runArgs)}`);
return -1;
}
}
runArgs['stream'] = fs.createReadStream(args['file']);
delete runArgs['file'];
if (runArgs.thumbnail) {
runArgs['thumb'] = {
value: fs.createReadStream(runArgs['thumbnail']),
options: {
filename: runArgs.thumbnail,
contentType: 'image/jpg'
}
}
delete runArgs['thumbnail'];
}
return fbUpload(runArgs).then(async (res) => {
var d = await res.json();
console.log('res: ', res);
return d;
// return res.json();
//res: { success: true, video_id: '1838312909759132' }
}).catch((e) => {
logger.error(JSON.stringify(e.error));
});
// return res;
}
// const args = {
// token: "", // with the permission to upload
// id: "", //The id represent {page_id || user_id || event_id || group_id}
// stream: fs.createReadStream('./fixture.mp4'), //path to the video,
// title: "my video",
// description: "my description",
// thumb: {
// value: fs.createReadStream('./fixture.jpg'),
// options: {
// filename: 'fixture.jpg',
// contentType: 'image/jpg'
// }
// }
// // if you want the default thumb from the video just remove the field
// // you can add any extra fields from the api https://developers.facebook.com/docs/graph-api/reference/page/videos/#Creating
// // all keys except token, id, stream are passed to the final request
// };
main(args=yargs_parser(process.argv.slice(2)));