forked from nodejs/create-node-meeting-artifacts
-
Notifications
You must be signed in to change notification settings - Fork 1
/
create-node-meeting-artifacts.js
157 lines (138 loc) · 6.07 KB
/
create-node-meeting-artifacts.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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
'use strict'
const fs = require('fs');
const path = require('path');
const process = require('process');
const child_process = require('child_process');
const GitHubApi = require("github");
const ghauth = require('ghauth');
const parser = require('properties-parser');
const gcal = require('google-calendar');
const googleAuth = require('google-auth-wrapper');
const gdriveWrapper = require('google-drive-wrapper');
const meetingGroup = process.argv[2] || 'tsc';
const authOptions = { configName: 'iojs-tools', scopes: [ 'user', 'repo' ] };
const repos = [];
let githubOrg = 'nodejs';
const github = new GitHubApi({
});
ghauth(authOptions, (err, authData) => {
if (err) {
throw err;
}
// first authenticate to google and github
googleAuth.execute('./', 'client_secret', (googleAuthToken, google) => {
github.authenticate({
type: "token",
token: authData.token
});
// ok all authenticated
// read in the configuration for the meeting
const invited = fs.readFileSync(path.join('templates',
'invited_' +
meetingGroup)).toString();
const observers = fs.readFileSync(path.join('templates',
'observers_' +
meetingGroup)).toString();
const baseMeetingInfo = fs.readFileSync(path.join('templates',
'meeting_base_' +
meetingGroup));
const meetingProperties = parser.parse(baseMeetingInfo);
var meetingGroupForTag = meetingGroup;
if (meetingProperties.AGENDA_TAG) {
meetingGroupForTag = meetingProperties.AGENDA_TAG.replace('-agenda', '');
}
if (meetingProperties.GITHUB_ORG) {
githubOrg = meetingProperties.GITHUB_ORG.replace(/"/g, '');
}
// find the next meeting instance in the google calendar. We assume 1 meeting
// in the next week
const calendar = google.calendar('v3');
calendar.events.list({
auth: googleAuthToken,
calendarId: meetingProperties.CALENDAR_ID.replace(/"/g, ''),
timeMin: (new Date()).toISOString(),
timeMax: (new Date(Date.now() + 7 * 24 * 60 * 60 * 1000)).toISOString(),
singleEvents: true,
q: meetingProperties.CALENDAR_FILTER.replace(/"/g, ''),
maxResults: 1,
}, (err, response) => {
if (err) {
throw err;
}
const events = response.items;
if (events.length == 0) {
console.log('Could not find calendar event');
} else {
// extract the time and complete the meeting info for make-node-meeting
const meetingTime = (new Date(events[0].start.dateTime)).toISOString();
const meetingInfo = baseMeetingInfo.toString() +
'MEETING_TIME="' + meetingTime + '"\n' +
'INVITEES="' +
invited +
'\n' +
'### Observers/Guests\n' +
observers +
'"';
fs.writeFileSync(
path.join(process.env.HOME,
'.make-node-meeting/' + meetingGroupForTag + '.sh'),
meetingInfo);
// generate the meeting issue content with make-node-meeting
var newIssue = child_process.spawnSync(
path.join(__dirname, 'node_modules/make-node-meeting/make-node-meeting.sh'),
[ meetingGroupForTag ]).stdout.toString();
// parse out the title
const issueLines = newIssue.split('\n');
const title = issueLines[1];
newIssue = issueLines.splice(4).join('\n');
// create the minutes document
const agendaInfo = child_process.spawnSync(
'node',
['node_modules/node-meeting-agenda/node-meeting-agenda.js',
meetingGroupForTag + '-agenda', githubOrg]).stdout.toString();
let minutesDoc = fs.readFileSync(path.join('templates',
'minutes_base_' +
meetingGroup)).toString();
minutesDoc = minutesDoc.replace('$TITLE$', title);
minutesDoc = minutesDoc.replace('$AGENDA_CONTENT$', agendaInfo);
minutesDoc = minutesDoc.replace('$INVITED$', invited);
minutesDoc = minutesDoc.replace('$OBSERVERS$', observers);
const minutesDocName = path.join(__dirname, 'minutes_temp.txt');
fs.writeFileSync( minutesDocName, minutesDoc);
// upload the minutes doc
const wrapper = new gdriveWrapper(googleAuthToken, google, 'dummy' );
wrapper.getMetaForFilename('/nodejs-meetings', function(err, parentMeta) {
if (err !== null) {
console.log('Directory called "nodejs-meetings" does not exist, exiting');
process.exit(-1);
}
wrapper.uploadFile(title, minutesDocName,
{ parent: parentMeta.id,
compress: false,
encrypt: false,
convert: true,
mimeType: 'application/vnd.google-apps.document' },
function(err, meta) {
if (err !== null) {
console.log('Failed to upload minutes file');
console.log(err);
} else {
// create the issue in github
newIssue = newIssue.toString().replace(
/\* \*\*Minutes Google Doc\*\*: <>/,
'* Minutes Google Doc: <https://docs.google.com/document/d/' + meta.id + '/edit>');
newIssue = newIssue.replace(/\* _Previous Minutes Google Doc: <>_/,'');
github.issues.create({
owner: meetingProperties.USER.replace(/"/g, ''),
repo: meetingProperties.REPO.replace(/"/g, ''),
title: title,
body: newIssue,
assignee: "mhdawson"
});
}
});
});
}
});
});
})