cleanup
This commit is contained in:
parent
b49041db43
commit
3aa913e8c0
3
.gitignore
vendored
3
.gitignore
vendored
@ -1,3 +1,4 @@
|
|||||||
|
bin
|
||||||
node_modules
|
node_modules
|
||||||
public
|
public
|
||||||
.tmp
|
.tmp
|
||||||
@ -5,5 +6,5 @@ public
|
|||||||
.idea
|
.idea
|
||||||
client/bower_components
|
client/bower_components
|
||||||
dist
|
dist
|
||||||
/server/config/local.env.js
|
server/config/local.env.js
|
||||||
wdiff-1.2.2
|
wdiff-1.2.2
|
||||||
|
@ -15,42 +15,4 @@ angular.module('markdownFormatWdiffApp', [
|
|||||||
});
|
});
|
||||||
|
|
||||||
$locationProvider.html5Mode(true);
|
$locationProvider.html5Mode(true);
|
||||||
$httpProvider.interceptors.push('authInterceptor');
|
|
||||||
})
|
})
|
||||||
|
|
||||||
.factory('authInterceptor', function ($rootScope, $q, $cookieStore, $location) {
|
|
||||||
return {
|
|
||||||
// Add authorization token to headers
|
|
||||||
request: function (config) {
|
|
||||||
config.headers = config.headers || {};
|
|
||||||
if ($cookieStore.get('token')) {
|
|
||||||
config.headers.Authorization = 'Bearer ' + $cookieStore.get('token');
|
|
||||||
}
|
|
||||||
return config;
|
|
||||||
},
|
|
||||||
|
|
||||||
// Intercept 401s and redirect you to login
|
|
||||||
responseError: function(response) {
|
|
||||||
if(response.status === 401) {
|
|
||||||
$location.path('/login');
|
|
||||||
// remove any stale tokens
|
|
||||||
$cookieStore.remove('token');
|
|
||||||
return $q.reject(response);
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
return $q.reject(response);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
||||||
})
|
|
||||||
|
|
||||||
.run(function ($rootScope, $location, Auth) {
|
|
||||||
// Redirect to login if route requires auth and you're not logged in
|
|
||||||
$rootScope.$on('$routeChangeStart', function (event, next) {
|
|
||||||
Auth.isLoggedInAsync(function(loggedIn) {
|
|
||||||
if (next.authenticate && !loggedIn) {
|
|
||||||
$location.path('/login');
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
@ -1,146 +0,0 @@
|
|||||||
'use strict';
|
|
||||||
|
|
||||||
angular.module('markdownFormatWdiffApp')
|
|
||||||
.factory('Auth', function Auth($location, $rootScope, $http, User, $cookieStore, $q) {
|
|
||||||
var currentUser = {};
|
|
||||||
if($cookieStore.get('token')) {
|
|
||||||
currentUser = User.get();
|
|
||||||
}
|
|
||||||
|
|
||||||
return {
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Authenticate user and save token
|
|
||||||
*
|
|
||||||
* @param {Object} user - login info
|
|
||||||
* @param {Function} callback - optional
|
|
||||||
* @return {Promise}
|
|
||||||
*/
|
|
||||||
login: function(user, callback) {
|
|
||||||
var cb = callback || angular.noop;
|
|
||||||
var deferred = $q.defer();
|
|
||||||
|
|
||||||
$http.post('/auth/local', {
|
|
||||||
email: user.email,
|
|
||||||
password: user.password
|
|
||||||
}).
|
|
||||||
success(function(data) {
|
|
||||||
$cookieStore.put('token', data.token);
|
|
||||||
currentUser = User.get();
|
|
||||||
deferred.resolve(data);
|
|
||||||
return cb();
|
|
||||||
}).
|
|
||||||
error(function(err) {
|
|
||||||
this.logout();
|
|
||||||
deferred.reject(err);
|
|
||||||
return cb(err);
|
|
||||||
}.bind(this));
|
|
||||||
|
|
||||||
return deferred.promise;
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Delete access token and user info
|
|
||||||
*
|
|
||||||
* @param {Function}
|
|
||||||
*/
|
|
||||||
logout: function() {
|
|
||||||
$cookieStore.remove('token');
|
|
||||||
currentUser = {};
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Create a new user
|
|
||||||
*
|
|
||||||
* @param {Object} user - user info
|
|
||||||
* @param {Function} callback - optional
|
|
||||||
* @return {Promise}
|
|
||||||
*/
|
|
||||||
createUser: function(user, callback) {
|
|
||||||
var cb = callback || angular.noop;
|
|
||||||
|
|
||||||
return User.save(user,
|
|
||||||
function(data) {
|
|
||||||
$cookieStore.put('token', data.token);
|
|
||||||
currentUser = User.get();
|
|
||||||
return cb(user);
|
|
||||||
},
|
|
||||||
function(err) {
|
|
||||||
this.logout();
|
|
||||||
return cb(err);
|
|
||||||
}.bind(this)).$promise;
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Change password
|
|
||||||
*
|
|
||||||
* @param {String} oldPassword
|
|
||||||
* @param {String} newPassword
|
|
||||||
* @param {Function} callback - optional
|
|
||||||
* @return {Promise}
|
|
||||||
*/
|
|
||||||
changePassword: function(oldPassword, newPassword, callback) {
|
|
||||||
var cb = callback || angular.noop;
|
|
||||||
|
|
||||||
return User.changePassword({ id: currentUser._id }, {
|
|
||||||
oldPassword: oldPassword,
|
|
||||||
newPassword: newPassword
|
|
||||||
}, function(user) {
|
|
||||||
return cb(user);
|
|
||||||
}, function(err) {
|
|
||||||
return cb(err);
|
|
||||||
}).$promise;
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets all available info on authenticated user
|
|
||||||
*
|
|
||||||
* @return {Object} user
|
|
||||||
*/
|
|
||||||
getCurrentUser: function() {
|
|
||||||
return currentUser;
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Check if a user is logged in
|
|
||||||
*
|
|
||||||
* @return {Boolean}
|
|
||||||
*/
|
|
||||||
isLoggedIn: function() {
|
|
||||||
return currentUser.hasOwnProperty('role');
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Waits for currentUser to resolve before checking if user is logged in
|
|
||||||
*/
|
|
||||||
isLoggedInAsync: function(cb) {
|
|
||||||
if(currentUser.hasOwnProperty('$promise')) {
|
|
||||||
currentUser.$promise.then(function() {
|
|
||||||
cb(true);
|
|
||||||
}).catch(function() {
|
|
||||||
cb(false);
|
|
||||||
});
|
|
||||||
} else if(currentUser.hasOwnProperty('role')) {
|
|
||||||
cb(true);
|
|
||||||
} else {
|
|
||||||
cb(false);
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Check if a user is an admin
|
|
||||||
*
|
|
||||||
* @return {Boolean}
|
|
||||||
*/
|
|
||||||
isAdmin: function() {
|
|
||||||
return currentUser.role === 'admin';
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get auth token
|
|
||||||
*/
|
|
||||||
getToken: function() {
|
|
||||||
return $cookieStore.get('token');
|
|
||||||
}
|
|
||||||
};
|
|
||||||
});
|
|
@ -1,22 +0,0 @@
|
|||||||
'use strict';
|
|
||||||
|
|
||||||
angular.module('markdownFormatWdiffApp')
|
|
||||||
.factory('User', function ($resource) {
|
|
||||||
return $resource('/api/users/:id/:controller', {
|
|
||||||
id: '@_id'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
changePassword: {
|
|
||||||
method: 'PUT',
|
|
||||||
params: {
|
|
||||||
controller:'password'
|
|
||||||
}
|
|
||||||
},
|
|
||||||
get: {
|
|
||||||
method: 'GET',
|
|
||||||
params: {
|
|
||||||
id:'me'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
@ -1,13 +1,15 @@
|
|||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
angular.module('markdownFormatWdiffApp')
|
angular.module('markdownFormatWdiffApp')
|
||||||
.controller('NavbarCtrl', function ($scope, $location, Auth) {
|
.controller('NavbarCtrl', function ($scope, $location , /*Auth*/) {
|
||||||
$scope.menu = [{
|
$scope.menu = [{
|
||||||
'title': 'Home',
|
'title': 'Home',
|
||||||
'link': '/'
|
'link': '/'
|
||||||
}];
|
}];
|
||||||
|
|
||||||
$scope.isCollapsed = true;
|
$scope.isCollapsed = true;
|
||||||
|
|
||||||
|
/*
|
||||||
$scope.isLoggedIn = Auth.isLoggedIn;
|
$scope.isLoggedIn = Auth.isLoggedIn;
|
||||||
$scope.isAdmin = Auth.isAdmin;
|
$scope.isAdmin = Auth.isAdmin;
|
||||||
$scope.getCurrentUser = Auth.getCurrentUser;
|
$scope.getCurrentUser = Auth.getCurrentUser;
|
||||||
@ -16,8 +18,9 @@ angular.module('markdownFormatWdiffApp')
|
|||||||
Auth.logout();
|
Auth.logout();
|
||||||
$location.path('/login');
|
$location.path('/login');
|
||||||
};
|
};
|
||||||
|
*/
|
||||||
|
|
||||||
$scope.isActive = function(route) {
|
$scope.isActive = function(route) {
|
||||||
return route === $location.path();
|
return route === $location.path();
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
@ -65,8 +65,6 @@
|
|||||||
<script src="app/compare/compare.js"></script>
|
<script src="app/compare/compare.js"></script>
|
||||||
<script src="app/compare/create/create.controller.js"></script>
|
<script src="app/compare/create/create.controller.js"></script>
|
||||||
<script src="app/compare/show/show.controller.js"></script>
|
<script src="app/compare/show/show.controller.js"></script>
|
||||||
<script src="components/auth/auth.service.js"></script>
|
|
||||||
<script src="components/auth/user.service.js"></script>
|
|
||||||
<script src="components/modal/modal.service.js"></script>
|
<script src="components/modal/modal.service.js"></script>
|
||||||
<script src="components/mongoose-error/mongoose-error.directive.js"></script>
|
<script src="components/mongoose-error/mongoose-error.directive.js"></script>
|
||||||
<script src="components/navbar/navbar.controller.js"></script>
|
<script src="components/navbar/navbar.controller.js"></script>
|
||||||
|
@ -27,7 +27,6 @@ exports.wdiffMarkdownComparison = function wdiffMarkdownComparison(req, res) {
|
|||||||
return handleError(res, err);
|
return handleError(res, err);
|
||||||
|
|
||||||
_.merge(result, comparison._doc)
|
_.merge(result, comparison._doc)
|
||||||
console.log(result);
|
|
||||||
return res.json(result);
|
return res.json(result);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user