setup various services and login page
This commit is contained in:
parent
724a136b7e
commit
88c1c4b3dd
|
@ -0,0 +1,12 @@
|
|||
angular
|
||||
.module('bit.accounts')
|
||||
|
||||
.controller('accountsLoginController', function ($scope, $state) {
|
||||
$scope.login = function (model) {
|
||||
$state.go('tabs.current');
|
||||
};
|
||||
|
||||
$scope.twoFactor = function (model) {
|
||||
$state.go('tabs.current');
|
||||
};
|
||||
});
|
|
@ -0,0 +1,2 @@
|
|||
angular
|
||||
.module('bit.accounts', []);
|
|
@ -0,0 +1,22 @@
|
|||
<ion-view view-title="bitwarden">
|
||||
<ion-content>
|
||||
<div class="list">
|
||||
<label class="item item-input">
|
||||
<i class="icon ion-android-mail placeholder-icon"></i>
|
||||
<input type="text" placeholder="Email address" ng-model="model.email">
|
||||
</label>
|
||||
<label class="item item-input">
|
||||
<i class="icon ion-locked placeholder-icon"></i>
|
||||
<input type="password" placeholder="Master password" ng-model="model.masterPassword">
|
||||
</label>
|
||||
</div>
|
||||
<div class="padding">
|
||||
<button class="button button-block button-positive" ng-click="login(model)">
|
||||
Log In
|
||||
</button>
|
||||
<p class="text-center">
|
||||
<a href="#/hint">Get master password hint</a>
|
||||
</p>
|
||||
</div>
|
||||
</ion-content>
|
||||
</ion-view>
|
|
@ -0,0 +1,7 @@
|
|||
<ion-view view-title="bitwarden">
|
||||
<ion-content class="padding">
|
||||
<p>
|
||||
Some content for your login.
|
||||
</p>
|
||||
</ion-content>
|
||||
</ion-view>
|
|
@ -2,6 +2,7 @@
|
|||
.module('bit', [
|
||||
'ionic',
|
||||
|
||||
'bit.accounts',
|
||||
'bit.current',
|
||||
'bit.vault',
|
||||
'bit.settings',
|
||||
|
|
|
@ -4,6 +4,16 @@
|
|||
.config(function ($stateProvider, $urlRouterProvider) {
|
||||
|
||||
$stateProvider
|
||||
.state('login', {
|
||||
url: "/login",
|
||||
controller: 'accountsLoginController',
|
||||
templateUrl: "app/accounts/views/accountsLogin.html"
|
||||
})
|
||||
.state('login.twoFactor', {
|
||||
url: "/two-factor",
|
||||
controller: 'accountsLoginController',
|
||||
templateUrl: "app/accounts/views/accountsLoginTwoFactor.html"
|
||||
})
|
||||
.state('tabs', {
|
||||
url: "/tab",
|
||||
abstract: true,
|
||||
|
@ -47,5 +57,5 @@
|
|||
});
|
||||
|
||||
|
||||
$urlRouterProvider.otherwise("/tab/current");
|
||||
$urlRouterProvider.otherwise("/login");
|
||||
});
|
||||
|
|
|
@ -8,9 +8,20 @@
|
|||
<link rel="stylesheet" href="../node_modules/ionic-framework-v1/css/ionic.css">
|
||||
<script src="../node_modules/ionic-framework-v1/js/ionic.bundle.js"></script>
|
||||
|
||||
<script src="../node_modules/sjcl/core/sjcl.js"></script>
|
||||
<script src="../node_modules/sjcl/core/cbc.js"></script>
|
||||
<script src="../node_modules/sjcl/core/bitArray.js"></script>
|
||||
|
||||
<script src="../services/tokenService.js"></script>
|
||||
<script src="../services/cryptoService.js"></script>
|
||||
<script src="../services/authService.js"></script>
|
||||
|
||||
<script src="app/app.js"></script>
|
||||
<script src="app/config.js"></script>
|
||||
|
||||
<script src="app/accounts/accountsModule.js"></script>
|
||||
<script src="app/accounts/accountsLoginController.js"></script>
|
||||
|
||||
<script src="app/current/currentModule.js"></script>
|
||||
<script src="app/current/currentController.js"></script>
|
||||
|
||||
|
|
|
@ -21,5 +21,9 @@
|
|||
},
|
||||
"default_title": "bitwarden",
|
||||
"default_popup": "browser_action/index.html"
|
||||
}
|
||||
},
|
||||
"permissions": [
|
||||
"storage",
|
||||
"unlimitedStorage"
|
||||
]
|
||||
}
|
|
@ -2,6 +2,7 @@
|
|||
"name": "bitwarden",
|
||||
"version": "0.0.1",
|
||||
"devDependencies": {
|
||||
"ionic-framework-v1": "1.3.1"
|
||||
"ionic-framework-v1": "1.3.1",
|
||||
"sjcl": "1.0.3"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -0,0 +1,78 @@
|
|||
var g_authService = function () {
|
||||
var _service = {}, _userProfile = null;
|
||||
|
||||
_service.logIn = function (email, masterPassword) {
|
||||
return;
|
||||
};
|
||||
|
||||
_service.logInTwoFactor = function (code, provider) {
|
||||
return;
|
||||
};
|
||||
|
||||
_service.logOut = function (callback) {
|
||||
g_tokenService.clearToken(function () {
|
||||
g_cryptoService.clearKey(function () {
|
||||
_userProfile = null;
|
||||
callback();
|
||||
});
|
||||
});
|
||||
};
|
||||
|
||||
_service.getUserProfile = function (callback) {
|
||||
if (!_userProfile) {
|
||||
_service.setUserProfile(null, function () {
|
||||
callback(_userProfile);
|
||||
});
|
||||
}
|
||||
|
||||
return callback(_userProfile);
|
||||
};
|
||||
|
||||
_service.setUserProfile = function (profile, callback) {
|
||||
g_tokenService.getToken(function (token) {
|
||||
if (!token) {
|
||||
return;
|
||||
}
|
||||
|
||||
var decodedToken = jwtHelper.decodeToken(token);
|
||||
var twoFactor = decodedToken.authmethod === "TwoFactor";
|
||||
|
||||
_userProfile = {
|
||||
id: decodedToken.nameid,
|
||||
email: decodedToken.email,
|
||||
twoFactor: twoFactor
|
||||
};
|
||||
|
||||
if (!twoFactor && profile) {
|
||||
loadProfile(profile);
|
||||
}
|
||||
else if (!twoFactor && !profile) {
|
||||
apiService.accounts.getProfile({}, loadProfile);
|
||||
}
|
||||
|
||||
callback();
|
||||
});
|
||||
};
|
||||
|
||||
function loadProfile(profile) {
|
||||
_userProfile.extended = {
|
||||
name: profile.Name,
|
||||
twoFactorEnabled: profile.TwoFactorEnabled,
|
||||
culture: profile.Culture
|
||||
};
|
||||
}
|
||||
|
||||
_service.isAuthenticated = function (callback) {
|
||||
callback(_service.getUserProfile(function (profile) {
|
||||
return profile !== null && !profile.twoFactor;
|
||||
}));
|
||||
};
|
||||
|
||||
_service.isTwoFactorAuthenticated = function (callback) {
|
||||
callback(_service.getUserProfile(function (profile) {
|
||||
return profile !== null && profile.twoFactor;
|
||||
}));
|
||||
};
|
||||
|
||||
return _service;
|
||||
};
|
|
@ -0,0 +1,128 @@
|
|||
var g_cryptoService = function () {
|
||||
var _service = {}, _key, _b64Key, _aes;
|
||||
|
||||
sjcl.beware['CBC mode is dangerous because it doesn\'t protect message integrity.']();
|
||||
|
||||
_service.setKey = function (key, callback) {
|
||||
if (!callback || typeof callback !== 'function') {
|
||||
throw 'callback function required';
|
||||
}
|
||||
|
||||
_key = key;
|
||||
chrome.storage.local.set({
|
||||
'key': sjcl.codec.base64.fromBits(key)
|
||||
}, function () {
|
||||
callback();
|
||||
});
|
||||
};
|
||||
|
||||
_service.getKey = function (b64, callback) {
|
||||
if (!callback || typeof callback !== 'function') {
|
||||
throw 'callback function required';
|
||||
}
|
||||
|
||||
if (b64 && b64 === true && _b64Key) {
|
||||
return callback(_b64Key);
|
||||
}
|
||||
else if (!b64 && _key) {
|
||||
return callback(_key);
|
||||
}
|
||||
|
||||
chrome.storage.local.get('key', function (key) {
|
||||
if (key) {
|
||||
_key = sjcl.codec.base64.toBits(key);
|
||||
}
|
||||
|
||||
if (b64 && b64 === true) {
|
||||
_b64Key = sjcl.codec.base64.fromBits(_key);
|
||||
return callback(_b64Key);
|
||||
}
|
||||
|
||||
return callback(_key);
|
||||
});
|
||||
};
|
||||
|
||||
_service.clearKey = function (callback) {
|
||||
if (!callback || typeof callback !== 'function') {
|
||||
throw 'callback function required';
|
||||
}
|
||||
|
||||
_key = _b64Key = _aes = null;
|
||||
chrome.storage.local.remove('key', function () {
|
||||
callback();
|
||||
});
|
||||
};
|
||||
|
||||
_service.makeKey = function (password, salt, b64) {
|
||||
var key = sjcl.misc.pbkdf2(password, salt, 5000, 256, null);
|
||||
|
||||
if (b64 && b64 === true) {
|
||||
return sjcl.codec.base64.fromBits(key);
|
||||
}
|
||||
|
||||
return key;
|
||||
};
|
||||
|
||||
_service.hashPassword = function (password, key) {
|
||||
if (!key) {
|
||||
key = _service.getKey();
|
||||
}
|
||||
|
||||
if (!password || !key) {
|
||||
throw 'Invalid parameters.';
|
||||
}
|
||||
|
||||
var hashBits = sjcl.misc.pbkdf2(key, password, 1, 256, null);
|
||||
return sjcl.codec.base64.fromBits(hashBits);
|
||||
};
|
||||
|
||||
_service.getAes = function () {
|
||||
if (!_aes && _service.getKey()) {
|
||||
_aes = new sjcl.cipher.aes(_service.getKey());
|
||||
}
|
||||
|
||||
return _aes;
|
||||
};
|
||||
|
||||
_service.encrypt = function (plaintextValue, key) {
|
||||
if (!_service.getKey() && !key) {
|
||||
throw 'Encryption key unavailable.';
|
||||
}
|
||||
|
||||
if (!key) {
|
||||
key = _service.getKey();
|
||||
}
|
||||
|
||||
var response = {};
|
||||
var params = {
|
||||
mode: "cbc",
|
||||
iv: sjcl.random.randomWords(4, 0)
|
||||
};
|
||||
|
||||
var ctJson = sjcl.encrypt(key, plaintextValue, params, response);
|
||||
|
||||
var ct = ctJson.match(/"ct":"([^"]*)"/)[1];
|
||||
var iv = sjcl.codec.base64.fromBits(response.iv);
|
||||
|
||||
return iv + "|" + ct;
|
||||
};
|
||||
|
||||
_service.decrypt = function (encValue) {
|
||||
if (!_service.getAes()) {
|
||||
throw 'AES encryption unavailable.';
|
||||
}
|
||||
|
||||
var encPieces = encValue.split('|');
|
||||
if (encPieces.length !== 2) {
|
||||
return '';
|
||||
}
|
||||
|
||||
var ivBits = sjcl.codec.base64.toBits(encPieces[0]);
|
||||
var ctBits = sjcl.codec.base64.toBits(encPieces[1]);
|
||||
|
||||
var decBits = sjcl.mode.cbc.decrypt(_service.getAes(), ctBits, ivBits, null);
|
||||
return sjcl.codec.utf8String.fromBits(decBits);
|
||||
};
|
||||
|
||||
return _service;
|
||||
};
|
|
@ -0,0 +1,35 @@
|
|||
var g_tokenService = function () {
|
||||
var _service = {}, _token;
|
||||
|
||||
_service.setToken = function (token, callback) {
|
||||
_token = token;
|
||||
chrome.storage.local.set({
|
||||
'authBearer': token
|
||||
}, function () {
|
||||
callback();
|
||||
});
|
||||
};
|
||||
|
||||
_service.getToken = function (callback) {
|
||||
if (_token) {
|
||||
return callback(_token);
|
||||
}
|
||||
|
||||
chrome.storage.local.get('authBearer', function (authBearer) {
|
||||
if (authBearer) {
|
||||
_token = authBearer;
|
||||
}
|
||||
|
||||
return callback(_token);
|
||||
});
|
||||
};
|
||||
|
||||
_service.clearToken = function (callback) {
|
||||
_token = null;
|
||||
chrome.storage.local.remove('authBearer', function () {
|
||||
callback();
|
||||
});
|
||||
};
|
||||
|
||||
return _service;
|
||||
};
|
Loading…
Reference in New Issue