Skip to content

Instantly share code, notes, and snippets.

@JohnMcLear
Created April 25, 2020 20:05
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 JohnMcLear/8f6f130d8fe5230a38c46644cd1408d5 to your computer and use it in GitHub Desktop.
Save JohnMcLear/8f6f130d8fe5230a38c46644cd1408d5 to your computer and use it in GitHub Desktop.
/**
* 2011 Peter 'Pita' Martischka
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS-IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
var dirty = require("dirty");
var git = require("simple-git");
var async = require("async");
exports.database = function(settings)
{
this.db=null;
if(!settings || !settings.filename)
{
settings = {filename:null};
}
this.settings = settings;
//set default settings
this.settings.cache = 0;
this.settings.writeInterval = 0;
this.settings.json = false;
}
exports.database.prototype.init = function(callback)
{
this.db = new dirty(this.settings.filename);
this.db.on('load', function(err)
{
callback();
});
}
exports.database.prototype.get = function (key, callback)
{
callback(null, this.db.get(key));
}
exports.database.prototype.findKeys = function (key, notKey, callback)
{
var keys=[]
, regex=this.createFindRegex(key, notKey)
;
this.db.forEach(function(key,val){
if(key.search(regex)!=-1){
keys.push(key);
}
}
);
callback(null, keys);
}
exports.database.prototype.set = function (key, value, callback)
{
this.db.set(key,value,callback);
var databasePath = require('path').dirname(this.settings.filename);
require('simple-git')(databasePath)
.silent(true)
.add('./*.db')
.commit("Automated commit...")
.push(['-u', 'origin', 'master'], () => console.debug('Stored git commit'));
}
exports.database.prototype.remove = function (key, callback)
{
this.db.rm(key,callback);
}
exports.database.prototype.close = function(callback)
{
this.db.close();
if(callback) callback();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment