Deleted examples, beginning to write in EC6.

Examples and Hydrabot will soon live in a separate repo which is better
suited to learning - this is so the main package isn't bloated.
This commit is contained in:
hydrabolt
2015-08-23 16:55:23 +01:00
parent 16b007c635
commit 35b61312b9
40 changed files with 1830 additions and 2486 deletions

View File

@@ -1,68 +1,67 @@
var fs = require( "fs" );
var crypto = require( "crypto" );
var md5 = require( "md5" );
"use strict";
var fs = require("fs");
var crypto = require("crypto");
var md5 = require("md5");
var tokens = {};
exports.TokenManager = function( folder, file ) {
exports.TokenManager = function (folder, file) {
this.path = folder + file;
var self = this;
try {
var fd = fs.openSync( self.path, "wx" );
var fd = fs.openSync(self.path, "wx");
self.writeTokens();
} catch ( e ) {
} catch (e) {
self.readTokens();
}
};
}
exports.TokenManager.prototype.addToken = function( id, token, pass ) {
tokens[ md5( id ) ] = encrypt( token, pass );
exports.TokenManager.prototype.addToken = function (id, token, pass) {
tokens[md5(id)] = encrypt(token, pass);
this.writeTokens();
}
};
exports.TokenManager.prototype.readTokens = function() {
tokens = JSON.parse( fs.readFileSync( this.path, "utf8" ) );
for ( tkn in tokens ) {
tokens[ tkn ] = decrypt( tokens[ tkn ], tkn );
exports.TokenManager.prototype.readTokens = function () {
tokens = JSON.parse(fs.readFileSync(this.path, "utf8"));
for (tkn in tokens) {
tokens[tkn] = decrypt(tokens[tkn], tkn);
}
}
};
exports.TokenManager.prototype.writeTokens = function() {
exports.TokenManager.prototype.writeTokens = function () {
var tkn = {};
for ( token in tokens ) {
tkn[ token ] = encrypt( tokens[ token ], token );
for (token in tokens) {
tkn[token] = encrypt(tokens[token], token);
}
fs.writeFile( this.path, JSON.stringify( tkn ), function( err ) {
fs.writeFile(this.path, JSON.stringify(tkn), function (err) {});
};
} );
}
exports.TokenManager.prototype.exists = function (id) {
return tokens[md5(id)];
};
exports.TokenManager.prototype.exists = function( id ) {
return tokens[ md5( id ) ];
}
exports.TokenManager.prototype.getToken = function (id, pass) {
try {
return decrypt(tokens[md5(id)], pass);
} catch (e) {
return false;
}
};
exports.TokenManager.prototype.getToken = function( id, pass ) {
try{
return decrypt( tokens[ md5( id ) ], pass );
}catch(e){
return false;
}
}
function encrypt( string, password ) {
var cipher = crypto.createCipher( "aes-256-ctr", password )
var crypted = cipher.update( string, 'utf8', 'hex' )
crypted += cipher.final( 'hex' );
function encrypt(string, password) {
var cipher = crypto.createCipher("aes-256-ctr", password);
var crypted = cipher.update(string, 'utf8', 'hex');
crypted += cipher.final('hex');
return crypted;
}
function decrypt( string, password ) {
var decipher = crypto.createDecipher( "aes-256-ctr", password )
var dec = decipher.update( string, 'hex', 'utf8' )
dec += decipher.final( 'utf8' );
function decrypt(string, password) {
var decipher = crypto.createDecipher("aes-256-ctr", password);
var dec = decipher.update(string, 'hex', 'utf8');
dec += decipher.final('utf8');
return dec;
}
}