Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
alseambusher committed Aug 5, 2016
1 parent 285bcd1 commit b1a1c21
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 51 deletions.
38 changes: 19 additions & 19 deletions app.js
Expand Up @@ -16,12 +16,12 @@ var routes = require("./routes").routes;
// set the view engine to ejs
app.set('view engine', 'ejs');

var bodyParser = require('body-parser')
var bodyParser = require('body-parser');
app.use( bodyParser.json() ); // to support JSON-encoded bodies
app.use(bodyParser.urlencoded({ // to support URL-encoded bodies
extended: true
}));
app.use(busboy()) // to support file uploads
app.use(busboy()); // to support file uploads

// include all folders
app.use(express.static(__dirname + '/public'));
Expand All @@ -44,7 +44,7 @@ app.get(routes.root, function(req, res) {
moment: moment
});
});
})
});

app.post(routes.save, function(req, res) {
// new job
Expand All @@ -56,31 +56,31 @@ app.post(routes.save, function(req, res) {
crontab.update(req.body);
}
res.end();
})
});

app.post(routes.stop, function(req, res) {
crontab.status(req.body._id, true);
res.end();
})
});

app.post(routes.start, function(req, res) {
crontab.status(req.body._id, false);
res.end();
})
});

app.post(routes.remove, function(req, res) {
crontab.remove(req.body._id);
res.end();
})
});
app.get(routes.crontab, function(req, res) {
crontab.set_crontab(req.query.env_vars);
res.end();
})
});

app.get(routes.backup, function(req, res) {
crontab.backup();
res.end();
})
});

app.get(routes.restore, function(req, res) {
// get all the crontabs
Expand All @@ -92,17 +92,17 @@ app.get(routes.restore, function(req, res) {
db: req.query.db
});
});
})
});

app.get(routes.delete_backup, function(req, res) {
restore.delete(req.query.db);
res.end();
})
});

app.get(routes.restore_backup, function(req, res) {
crontab.restore(req.query.db);
res.end();
})
});

app.get(routes.export, function(req, res) {
var file = __dirname + '/crontabs/crontab.db';
Expand All @@ -115,7 +115,7 @@ app.get(routes.export, function(req, res) {

var filestream = fs.createReadStream(file);
filestream.pipe(res);
})
});


app.post(routes.import, function(req, res) {
Expand All @@ -129,12 +129,12 @@ app.post(routes.import, function(req, res) {
res.redirect(routes.root);
});
});
})
});

app.get(routes.import_crontab, function(req, res) {
crontab.import_crontab()
crontab.import_crontab();
res.end();
})
});

app.get(routes.logger, function(req, res) {
var fs = require("fs");
Expand All @@ -143,8 +143,8 @@ app.get(routes.logger, function(req, res) {
res.sendFile(_file);
else
res.end("No errors logged yet");
})
});

app.listen(app.get('port'), function() {
console.log("Crontab UI is running at localhost:" + app.get('port'))
})
console.log("Crontab UI is running at localhost:" + app.get('port'));
});
56 changes: 25 additions & 31 deletions crontab.js
Expand Up @@ -5,8 +5,8 @@ db.loadDatabase(function (err) {
});
var exec = require('child_process').exec;
var fs = require('fs');
var cron_parser = require("cron-parser")
var os = require("os")
var cron_parser = require("cron-parser");
var os = require("os");

exports.log_folder = __dirname + '/crontabs/logs';
exports.env_file = __dirname + '/crontabs/env.db';
Expand All @@ -22,36 +22,36 @@ crontab = function(name, command, schedule, stopped, logging){
data.timestamp = (new Date()).toString();
data.logging = logging;
return data;
}
};

exports.create_new = function(name, command, schedule, logging){
var tab = crontab(name, command, schedule, false, logging);
tab.created = new Date().valueOf();
db.insert(tab);
}
};

exports.update = function(data){
db.update({_id: data._id}, crontab(data.name, data.command, data.schedule, null, data.logging));
}
};

exports.status = function(_id, stopped){
db.update({_id: _id},{$set: {stopped: stopped}});
}
};

exports.remove = function(_id){
db.remove({_id: _id}, {});
}
};
exports.crontabs = function(callback){
db.find({}).sort({ created: -1 }).exec(function(err, docs){
for(var i=0; i<docs.length; i++){
if(docs[i].schedule == "@reboot")
docs[i].next = "Next Reboot"
docs[i].next = "Next Reboot";
else
docs[i].next = cron_parser.parseExpression(docs[i].schedule).next().toString();
}
callback(docs);
});
}
};
exports.set_crontab = function(env_vars){
exports.crontabs( function(tabs){
var crontab_string = "";
Expand All @@ -64,7 +64,7 @@ exports.set_crontab = function(env_vars){
tmp_log = "/tmp/" + tab._id + ".log";
log_file = exports.log_folder + "/" + tab._id + ".log";
if(tab.command[tab.command.length-1] != ";") // add semicolon
tab.command +=";"
tab.command +=";";
//{ command; } 2>/tmp/<id>.log|| {if test -f /tmp/<id>; then date >> <log file>; cat /tmp/<id>.log >> <log file>; rm /tmp<id>.log }
crontab_string += tab.schedule + " { " + tab.command + " } 2> " + tmp_log +"; if test -f " + tmp_log +"; then date >> " + log_file + "; cat " + tmp_log + " >> " + log_file + "; rm " + tmp_log + "; fi \n";
}
Expand All @@ -79,10 +79,10 @@ exports.set_crontab = function(env_vars){
});

});
}
};

exports.get_backup_names = function(){
var backups = []
var backups = [];
fs.readdirSync(__dirname + '/crontabs').forEach(function(file){
// file name begins with backup
if(file.indexOf("backup") == 0){
Expand All @@ -92,10 +92,10 @@ exports.get_backup_names = function(){

// Sort by date. Newest on top
for(var i=0; i<backups.length; i++){
var Ti = backups[i].split("backup")[1]
var Ti = backups[i].split("backup")[1];
Ti = new Date(Ti.substring(0, Ti.length-3)).valueOf();
for(var j=0; j<i; j++){
var Tj = backups[j].split("backup")[1]
var Tj = backups[j].split("backup")[1];
Tj = new Date(Tj.substring(0, Tj.length-3)).valueOf();
if(Ti > Tj){
var temp = backups[i];
Expand All @@ -106,62 +106,56 @@ exports.get_backup_names = function(){
}

return backups;
}
};

exports.backup = function(){
//TODO check if it failed
fs.createReadStream( __dirname + '/crontabs/crontab.db').pipe(fs.createWriteStream( __dirname + '/crontabs/backup ' + (new Date()).toString().replace("+", " ") + '.db'));
}
};

exports.restore = function(db_name){
fs.createReadStream( __dirname + '/crontabs/' + db_name).pipe(fs.createWriteStream( __dirname + '/crontabs/crontab.db'));
db.loadDatabase(); // reload the database
}
};

exports.reload_db= function(){
db.loadDatabase();
}
};

exports.get_env = function(){
if (fs.existsSync(exports.env_file)) {
return fs.readFileSync(exports.env_file , 'utf8').replace("\n", "\n");
}
return ""
}
return "";
};

// TODO
exports.import_crontab = function(){
exec("crontab -l", function(error, stdout, stderr){
var lines = stdout.split("\n");

var namePrefix = new Date().getTime();

lines.forEach(function(line, index){
var regex = /^((\@[a-zA-Z]+\s)|(([^\s]+)\s([^\s]+)\s([^\s]+)\s([^\s]+)\s([^\s]+)\s))/;
var command = line.replace(regex, '').trim();
var schedule = line.replace(command, '').trim();

if(command && schedule){
var name = namePrefix + '_' + index;

db.crontabs.findOne({ command: command, schedule: schedule }, function(err, doc) {
db.findOne({ command: command, schedule: schedule }, function(err, doc) {
if(err) {
throw err;
}
if(!doc){
exports.create_new(name, command, null, null, schedule, null);
exports.create_new(name, command, schedule, null);
}
else{
doc.command = command;
doc.schedule = schedule;
exports.update(doc);
}
});


}

})
//console.log(stdout);
});
});
}
};
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "crontab-ui",
"version": "0.1.7",
"version": "0.1.8",
"description": "Easy and safe way to manage your crontab file",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit b1a1c21

Please sign in to comment.