Skip to content

Instantly share code, notes, and snippets.

@vad710
Forked from cyu/loader.js
Created October 22, 2015 15:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vad710/f65152ab3600552e48e2 to your computer and use it in GitHub Desktop.
Save vad710/f65152ab3600552e48e2 to your computer and use it in GitHub Desktop.
Load view/update functions from .js files and loads them to CouchDB.
/**
* Script to Load Views into Database
* Originaly from: http://blog.sourcebender.com/2010/07/28/loading-couchdb-views.html
*/
var fs = require('fs');
var http = require('http');
var path = require('path');
var console = require('sys');
var url = require('url');
var Script = require('vm').Script;
console.log("processing...");
var couchURL = url.parse(process.argv[2]);
function loadScript(designPath, basename) {
var fullPath = path.join(designPath, basename);
var design = {};
new Script(fs.readFileSync(fullPath), fullPath).runInNewContext({design: design});
return design;
}
var pendingCount = 0;
function updateDesignDoc(name, data) {
var designId = '_design/' + name;
var get = http.request({
port: couchURL.port,
host: couchURL.hostname,
method: 'GET',
path: couchURL.pathname + '/' + designId,
auth: couchURL.auth
});
get.end();
get.on('response', function (getResponse){
if (getResponse.statusCode == 404) {
data._id = designId;
updateCouch('PUT', data);
} else {
var buffer = '';
getResponse.on('data', function(chunk){ buffer += chunk; });
getResponse.on('end', function(){
var doc = JSON.parse(buffer);
data._id = doc._id;
data._rev = doc._rev;
updateCouch('PUT', data);
});
}
});
pendingCount++;
}
function updateCouch(method, doc) {
var json = JSON.stringify(doc);
var req = http.request({
port: couchURL.port,
host: couchURL.hostname,
method: method,
path: couchURL.pathname + '/' + doc._id,
auth: couchURL.auth,
headers: {
'Content-Type': 'application/json',
'Content-Length': json.length }
});
req.write(json);
req.end();
req.on('response', function(resp){
var data = '';
resp.on('data', function(chunk){ data += chunk; });
resp.on('end', function(){
console.log(doc._id + ' [' + method + ']: ' + data);
pendingCount--;
});
});
}
function designsFor(name, callback) {
var baseDir = path.join(__dirname, name);
fs.readdirSync(baseDir).forEach(function(designName) {
var designPath = path.join(baseDir, designName);
var stats = fs.statSync(designPath);
if (stats.isDirectory()) {
var files = fs.readdirSync(designPath).filter(function(fn){
return path.extname(fn) == '.js';
});
callback(designName, designPath, files);
}
});
}
designsFor('designs', function(designName, designPath, scripts){
var designDoc = {};
scripts.forEach(function(fn){
var name = fn.substring(0, fn.length - 3);
try {
console.log('[' + designName + '/' + fn + '] loading...');
var design = loadScript(designPath, fn);
if (design.view) {
console.log(' found view: ' + name);
if (!designDoc.views) designDoc.views = {};
if (design.view.map) {
console.log(' - map function found');
designDoc.views[name] = { map: design.view.map.toString() };
if (design.view.reduce) {
console.log(' - reduce function found');
designDoc.views[name].reduce = design.view.reduce.toString();
}
}
}
if (design.update) {
console.log(' found update: ' + name);
if (!designDoc.updates) designDoc.updates = {};
designDoc.updates[name] = design.update.toString();
}
} catch(e) {
console.log("unable to load design script '" + designName + '/' + fn + "': " + e);
}
});
updateDesignDoc(designName, designDoc);
});
var timeout;
timeout = setInterval(function(){
if (pendingCount == 0) {
console.log('Done.');
clearTimeout(timeout);
}
}, 100);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment