Skip to content

Commit 2668d46

Browse files
committed
introduce automatic generation of registry endpoints
- uses plugins.yaml at the root to generate: 1. registry/plugins json file containing main info on all plugins 2. registry/plugin/PLUGIN_ID/versions json file containing versions of the corresponding plugin which id is PLUGIN_ID. One file per plugin found in the initial yaml file - delegates to travis-ci the generation of the json files. fixes #14
1 parent 7a02fa7 commit 2668d46

File tree

199 files changed

+24046
-157
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

199 files changed

+24046
-157
lines changed

.travis.yml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
language: node_js
2+
install: npm install
3+
before_script:
4+
- git config --global user.email "[email protected]"
5+
- git config --global user.name "GitbucketPlugins CI Agent"
6+
script: node index.js
7+
after_success:
8+
- git config credential.helper "store --file=.git/credentials"
9+
- echo "https://${GH_TOKEN}:@github.com" > .git/credentials
10+
- git add .
11+
- git commit -m "updating generated plugins data"
12+
- git push origin master
13+
env:
14+
global:
15+
secure: FmaHmw5+ARBqzg3Vlp3/BV/WVD3z54ZtlT+ksZv+ASC2HpMcDp4bd6BD5vLLHBmpimKDKChDuYsGdj6IR1Q04rK2xy3WyEntyT8rjqnB0AmQIzvybcCi2rgzDrZUxNnCeGtziNWg7ixumeFe9m0MUQ0Rn762vMT70aEz9wChZym6quWJSomkTUCBfMNhcmxjSCkQAySwZztKUaKMoPXSMcGuYyn9I87g3ToD64HjxqaVRQJg+ZlahcGbn/E0NHtva92HogFAtn1AjQhlgmy1d9KnUJIds9je1G1YAoaDXB83iOTxIdKdUVWXTAYzG/KsVQC7s/QBgox2IYURoyK9mbrl6+YbURe0yI2pN7oqqlLjpifTcYLKPXOo2b0lHA6mWVittmbdA7+qdC4miGLxIGWgYKt7DexJ/NOUOj4xEa5A8+Hkg7nkXKI6vTOfJ694KLZfVkbXuqblEee1MCv4DhGcka3DUkaL61mVJMxKr2v+bneO/sWLlpwmN0C1aE6nJNQga5kWZHJ01xrUVlbSX3fdHomjvZ6vueRHMr2Z6MJmrPZiZt++VVvVeVPP6Rd8sneB7ikTBKMGi9Mhbv7DTi4tfEZ9YmfxDuQVrNyOYJDHC9ycer0ixRVGGM6eonYyym9EcuZNK8rZq63+PMYuEpCSWc7h7Ti4YyMmFKNwED4=

index.js

+60
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
'use strict';
2+
3+
global.__basedir = __dirname;
4+
5+
var yaml = require('node-yaml')
6+
, fs = require('fs')
7+
, mkdirp = require('mkdirp')
8+
, path = require('path');
9+
10+
11+
// Let's read the plugins.yaml data file and use it to generate our required data
12+
yaml.read ('plugins.yaml', {}, function (err, data) {
13+
var nbPlugins = data.length;
14+
console.log('generating ' + nbPlugins + ' plugins definitions');
15+
16+
generateMainPluginsJSONData(data);
17+
18+
for (var i = 0; i < nbPlugins; i++) {
19+
generateIndividualPluginJSONData(data[i])
20+
}
21+
console.log('done.');
22+
});
23+
24+
25+
function generateIndividualPluginJSONData(plugin) {
26+
var pluginPath = path.join(__basedir, 'registry', 'plugin', plugin.id);
27+
mkdirSync(pluginPath);
28+
fs.writeFile(path.join(pluginPath, 'versions'), JSON.stringify(plugin.versions, null, 2), {flag:'w'}, function(err) {
29+
if (err) throw err;
30+
});
31+
}
32+
33+
function generateMainPluginsJSONData(data) {
34+
var copy = JSON.parse(JSON.stringify(data));
35+
for (var plugin in copy) {
36+
delete plugin.versions;
37+
}
38+
var registryPath = path.join(__basedir, 'registry');
39+
mkdirSync(registryPath);
40+
fs.writeFile(path.join(registryPath, 'plugins'), JSON.stringify(copy, null, 2), {flag:'w'}, function(err) {
41+
if (err) throw err;
42+
});
43+
}
44+
45+
/**
46+
* Simple wrapper that allows to handle already existing path
47+
* @param path the path to directory to create
48+
*/
49+
var mkdirSync = function (path) {
50+
try {
51+
mkdirp.sync(path);
52+
// mkdirp(path, function(err) {
53+
// if (__debug) console.log('could not create ' + path + ' due to ' + err);
54+
// });
55+
} catch(e) {
56+
if ( e.code != 'EEXIST' ) {
57+
throw e;
58+
}
59+
}
60+
};

node_modules/.bin/mkdirp

+15
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/.bin/mkdirp.cmd

+7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/mkdirp/.travis.yml

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/mkdirp/LICENSE

+21
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/mkdirp/bin/cmd.js

+33
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/mkdirp/bin/usage.txt

+12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/mkdirp/examples/pow.js

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/mkdirp/index.js

+98
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/mkdirp/node_modules/minimist/.travis.yml

+4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/mkdirp/node_modules/minimist/LICENSE

+18
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/mkdirp/node_modules/minimist/example/parse.js

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)