Created
February 28, 2013 22:14
-
-
Save netzpirat/5060598 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
angular.module('project', ['projectServices']) | |
.config ($routeProvider) -> | |
$routeProvider | |
.when('/login', | |
templateUrl: 'partials/login.html', | |
controller: LoginCtrl) | |
.when('/assignments', | |
templateUrl: 'partials/assignments.html', | |
controller: AssignmentListCtrl) | |
.otherwise(redirectTo: '/login') | |
.run ($rootScope, $location, User) -> | |
$rootScope.$on '$routeChangeStart', (event, next, current) -> | |
if not User.isAuthenticated() and \ | |
next.templateUrl isnt '/partials/login.html' | |
$location.path("/login") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<p>Welcome, {{User.getName()}}!</p> | |
<button ng-click="User.logout()">Logout</button> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
window.LoginCtrl = ($scope, $location, User) -> | |
$scope.login = -> | |
User.login $scope.username, $scope.password, (result) -> | |
if !result | |
window.alert('Authentication failed!') | |
else | |
$scope.$apply -> $location.path('/assignments') | |
window.AssignmentListCtrl = ($scope, User) -> | |
$scope.User = User |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
moment = require('moment') | |
action 'index', -> | |
render(user: request.session.user) | |
action 'login', -> | |
authenticate request.body.username, request.body.password, (ret) -> | |
if (ret) | |
request.session.user = | |
name: request.body.username, | |
time: moment().unix() | |
send(result: ret) | |
action 'logout', -> | |
request.session.destroy() | |
redirect('/') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div ng-app="project"> | |
<%- javascript_include_tag('angular', 'angular-resource') %> | |
<%- js('app') %> | |
<%- js('controllers') %> | |
<%- js('services') %> | |
<div ng-view></div> | |
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div> | |
<form> | |
<label>Username: <input type="text" ng-model="username"></label> | |
<label>Password: <input type="password" ng-model="password"></label> | |
<button ng-click="login()">Login</button> | |
</form> | |
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
exports.routes = (map)-> | |
map.post '/login', 'home#login' | |
map.post '/logout', 'home#logout' | |
map.get '/', 'home#index' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
angular.module('projectServices', []) | |
.factory 'User', -> | |
@authenticated = false | |
@name = null | |
isAuthenticated: => @authenticated | |
getName: => @name | |
login: (username, password, callback) => | |
$.post '/login', | |
{username: username, password: password}, | |
((data) => | |
if data.result | |
@name = username | |
@authenticated = true | |
callback(data.result)), | |
'json' | |
logout: (callback) => | |
if @authenticated | |
$.post '/logout', {}, | |
((data) => | |
if data.result | |
@authenticated = false; | |
callback(data.result)), | |
'json' | |
else callback(false) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment