forked from Asana/asana-api-meta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpfile.js
330 lines (296 loc) · 9.3 KB
/
gulpfile.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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
var bump = require('gulp-bump');
var exec = require('child_process').exec;
var fs = require('fs-extra');
var git = require('gulp-git');
var syncToGitHub = require('sync-to-github');
var gulp = require('gulp');
var mocha = require('gulp-mocha');
var rename = require('gulp-rename');
var tagVersion = require('gulp-tag-version');
var template = require('gulp-template');
var util = require('util');
var yaml = require('js-yaml');
var resource = require('./src/resource');
var helpers = require('./src/helpers');
var _ = require('lodash');
var Bluebird = require('bluebird');
var GitHubApi = require('github');
var dateFormat = require('dateformat');
/**
* Paths
*/
var test = 'test/**/*';
/**
* Environment
*/
var languages = {
js: {
repo: 'Asana/node-asana',
outputPath: 'lib/resources/gen',
preserveRepoFiles: false
},
php: {
repo: 'Asana/php-asana',
outputPath: 'src/Asana/Resources/Gen',
preserveRepoFiles: false
},
java: {
repo: 'Asana/java-asana',
outputPath: 'src/main/java/com/asana/resources/gen',
preserveRepoFiles: false
},
python: {
repo: 'Asana/python-asana',
outputPath: 'asana/resources/gen',
// Keep the __init__.py file there
preserveRepoFiles: true
},
ruby: {
repo: 'Asana/ruby-asana',
outputPath: 'lib/asana/resources',
preserveRepoFiles: false,
skip: ['event']
},
api_explorer: {
repo: 'Asana/api-explorer',
outputPath: 'src/resources/gen',
preserveRepoFiles: false
},
api_reference: {
repo: 'Asana/asanastatic',
outputPath: '_content/developers/02-api-reference',
// Keep the other markdown pages and metadata there
preserveRepoFiles: true
}
};
var paths = {
dist: function(lang) {
return 'dist/' + lang;
},
repoOutputRelative: function(lang) {
return languages[lang].outputPath;
}
};
function readPackage(filename) {
return fs.readJSONSync(filename || 'package.json');
}
function writePackage(filename, data) {
return fs.writeJSONSync(filename || 'package.json', data);
}
/**
* High-level tasks
*/
// Build all languages
gulp.task('build', ['test'].concat(Object.keys(languages).map(function(lang) {
return 'build-' + lang;
})));
// Deploy languages
gulp.task('deploy', ['ensure-git-clean', 'build'].concat(Object.keys(languages).map(function(lang) {
return 'deploy-' + lang;
})));
// Store a single timestamp representing right now.
var nowTimestamp = dateFormat('yyyymmdd-HHMMss');
/**
* Generate build and deploy rules for each language
*/
var resourceNames = resource.names();
Object.keys(languages).forEach(function(lang) {
var config = languages[lang];
var token = process.env.ASANA_GITHUB_TOKEN || null;
var isProd = (process.env.PROD == '1');
function echoAndExec(command, options) {
if (process.env.GULP_DEBUG) {
console.log('+ ' + arguments[0]);
}
return new Bluebird(function(resolve, reject) {
return exec(command, options, function(err, stdout, stderr) {
if (err) {
reject(err);
} else {
resolve(stdout);
}
});
});
}
function resTaskName(resourceName) {
return 'build-' + lang + '-' + resourceName;
}
/**
* Clean work area for target repo
*/
Object.keys(languages).forEach(function(lang) {
gulp.task('clean-' + lang, function() {
fs.removeSync(paths.dist(lang));
});
});
/**
* Build rules, per resource.
*/
var resourcesToSkip = config.skip || [];
var resourcesToBuild = _.difference(resourceNames, resourcesToSkip);
resourcesToBuild.forEach(function(resourceName) {
gulp.task(resTaskName(resourceName), function() {
// Support only local templates
var templatePath = 'src/templates/' + lang;
var resourceTemplateInfo = require('./' + templatePath).resource;
// Load the resource yaml into a variable
var resourceInstance = resource.load(resourceName);
var templateHelpers = helpers(lang);
templateHelpers.resources = resourceNames;
// Load the resource file
return gulp.src(templatePath + '/' + resourceTemplateInfo.template)
.pipe( //Pipe it through a templating path with the language-specific helpers
template(resourceInstance, {
imports: templateHelpers,
variable: 'resource'
}))
.pipe( //Pipe it through a file renaming step, i.e. resource.ejs becomes project.rb
rename(resourceTemplateInfo.filename(resourceInstance, templateHelpers)))
.pipe( //Pipe it to the output destination
gulp.dest(paths.dist(lang)));
});
});
gulp.task(
'build-' + lang,
resourcesToBuild.map(resTaskName));
/**
* Deploy
*/
/**
* @returns {Promise<String>} The commit message to provide for a deployment.
*/
function createCommitMessage(user) {
var version = readPackage().version;
var revParse = Bluebird.promisify(git.revParse, git);
var githubUserName = user.login;
return revParse({args: '--abbrev-ref HEAD'}).then(function(branchName) {
return revParse({args: '--short HEAD'}).then(function(commitHash) {
var commitDesc = branchName.trim() ?
util.format("%s/%s", commitHash, branchName.trim()) :
commitHash;
return util.format(
"Deploy from asana-api-meta v%s (%s) by %s",
version, commitDesc, githubUserName);
});
});
}
function getGitHubUser() {
var github = githubClient(token);
var getUser = Bluebird.promisify(github.user.get, github.user);
return getUser({});
}
function deployWithGithubApi() {
return getGitHubUser().then(function(user) {
var branchName = isProd ?
'api-meta-incoming' :
(user.login + '-' + nowTimestamp);
return createCommitMessage(user).then(function(commitMessage) {
var repoParts = config.repo.split('/');
return syncToGitHub({
oauthToken: token,
user: repoParts[0],
repo: repoParts[1],
localPath: paths.dist(lang),
repoPath: paths.repoOutputRelative(lang),
branch: branchName,
baseBranch: 'master',
createBranch: true,
message: commitMessage,
preserveRepoFiles: !!config.preserveRepoFiles,
createPullRequest: isProd,
debug: !!process.env.GULP_DEBUG
});
});
});
}
function githubClient(token) {
var github = new GitHubApi({
version: '3.0.0',
protocol: 'https',
host: 'api.github.com'
});
github.authenticate({
type: 'oauth',
token: token
});
return github;
}
gulp.task(
'deploy-' + lang,
['ensure-git-clean', 'build-' + lang],
deployWithGithubApi);
});
/**
* Bumping version number and tagging the repository with it.
* Please read http://semver.org/
*
* You can use the commands
*
* gulp bump-patch # makes v0.1.0 → v0.1.1
* gulp bump-feature # makes v0.1.1 → v0.2.0
* gulp bump-release # makes v0.2.1 → v1.0.0
*
* To bump the version numbers accordingly after you did a patch,
* introduced a feature or made a backwards-incompatible release.
*/
function bumpVersion(importance) {
return gulp.src(['./package.json'])
.pipe(bump({type: importance}))
.pipe(gulp.dest('./'))
.pipe(git.commit('bump package version'))
.pipe(tagVersion());
}
gulp.task('bump-patch', ['ensure-git-clean'], function() {
return bumpVersion('patch');
});
gulp.task('bump-feature', ['ensure-git-clean'], function() {
return bumpVersion('minor');
});
gulp.task('bump-release', ['ensure-git-clean'], function() {
return bumpVersion('major');
});
/**
* Ensure that the git working directory is clean.
*/
gulp.task('ensure-git-clean', function() {
git.status(function(err, out) {
if (err) { throw err; }
if (!/working tree clean/.exec(out)) {
// Working directory must be clean for some operations.
// For bumping the version, this prevents accidental commits of
// unintended or partial changes.
// For deployment, this ensures that the deploy is tagged with a commit
// and that can be used to reference the exact state of the repo (if we
// allowed changes then the commit would not tell us what the code
// actually looked like).
throw new Error('Git working directory not clean, will not proceed.');
}
});
});
/**
* Tests the code with mocha.
*/
gulp.task('test', function(callback) {
gulp.src(test)
.pipe(mocha({
reporter: process.env.TRAVIS ? 'spec' : 'nyan'
}));
});
/**
* Copy the documents for api-reference to a sibling static site installation.
* TODO: it appears that the convention might be to do all of those repos in
* subdirs (as opposed to sibling dirs), based on paths.repoOutputRelative
*/
gulp.task('local-copy-api-reference', ['build-api_reference'], function(callback) {
fs.copySync(paths.dist('api_reference'), "../../vagrant-php7/asanastatic/" + paths.repoOutputRelative('api_reference'));
callback()
});
/**
* Setup gulp to watch the metadata and depoly to a working copy
* of the static site. The only assumptions are that asana-api-meta
* and the static site repo are in the same directory.
*/
gulp.task('watch-documents', function(callback) {
gulp.watch("src/**/*.{js,yaml,ejs}", ['local-copy-api-reference']);
});
gulp.task('default', ['build', 'local-copy-api-reference']);