2016-03-22 10:51:54 -04:00
|
|
|
import { Injectable } from 'angular2/core';
|
2016-04-14 16:07:46 -04:00
|
|
|
import { Http, Response, Headers, URLSearchParams, RequestOptions } from 'angular2/http';
|
2016-03-22 10:51:54 -04:00
|
|
|
import { Observable, Subject } from 'rxjs/Rx';
|
|
|
|
|
|
|
|
import { AuthStatus } from '../models/authStatus';
|
2016-04-14 16:07:46 -04:00
|
|
|
import { User } from '../models/user';
|
2016-03-22 10:51:54 -04:00
|
|
|
|
|
|
|
@Injectable()
|
|
|
|
export class AuthService {
|
2016-04-14 16:07:46 -04:00
|
|
|
loginChanged$;
|
2016-03-22 10:51:54 -04:00
|
|
|
|
2016-04-14 16:07:46 -04:00
|
|
|
private _loginChanged;
|
2016-03-22 10:51:54 -04:00
|
|
|
private _baseLoginUrl = '/api/v1/users/token';
|
|
|
|
private _clientId = '56f055587305d40b21904240';
|
|
|
|
private _clientSecret = 'megustalabanana';
|
|
|
|
|
2016-04-14 16:07:46 -04:00
|
|
|
constructor (private http: Http) {
|
|
|
|
this._loginChanged = new Subject<AuthStatus>();
|
|
|
|
this.loginChanged$ = this._loginChanged.asObservable();
|
|
|
|
}
|
2016-03-22 10:51:54 -04:00
|
|
|
|
|
|
|
login(username: string, password: string) {
|
|
|
|
let body = new URLSearchParams();
|
|
|
|
body.set('client_id', this._clientId);
|
|
|
|
body.set('client_secret', this._clientSecret);
|
|
|
|
body.set('response_type', 'code');
|
|
|
|
body.set('grant_type', 'password');
|
|
|
|
body.set('scope', 'upload');
|
|
|
|
body.set('username', username);
|
|
|
|
body.set('password', password);
|
|
|
|
|
|
|
|
let headers = new Headers();
|
|
|
|
headers.append('Content-Type', 'application/x-www-form-urlencoded');
|
|
|
|
|
|
|
|
let options = {
|
|
|
|
headers: headers
|
2016-04-08 14:58:07 -04:00
|
|
|
};
|
2016-03-22 10:51:54 -04:00
|
|
|
|
|
|
|
return this.http.post(this._baseLoginUrl, body.toString(), options)
|
|
|
|
.map(res => res.json())
|
|
|
|
.catch(this.handleError);
|
|
|
|
}
|
|
|
|
|
|
|
|
logout() {
|
|
|
|
// TODO make HTTP request
|
|
|
|
}
|
|
|
|
|
2016-04-14 16:07:46 -04:00
|
|
|
getRequestHeader(): Headers {
|
|
|
|
return new Headers({ 'Authorization': `${this.getTokenType()} ${this.getToken()}` });
|
|
|
|
}
|
|
|
|
|
|
|
|
getAuthRequestOptions(): RequestOptions {
|
|
|
|
return new RequestOptions({ headers: this.getRequestHeader() });
|
|
|
|
}
|
|
|
|
|
|
|
|
getToken(): string {
|
|
|
|
return localStorage.getItem('access_token');
|
|
|
|
}
|
|
|
|
|
|
|
|
getTokenType(): string {
|
|
|
|
return localStorage.getItem('token_type');
|
|
|
|
}
|
|
|
|
|
|
|
|
getUser(): User {
|
|
|
|
if (this.isLoggedIn() === false) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
const user = User.load();
|
|
|
|
|
|
|
|
return user;
|
|
|
|
}
|
|
|
|
|
|
|
|
isLoggedIn(): boolean {
|
|
|
|
if (this.getToken()) {
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-22 10:51:54 -04:00
|
|
|
setStatus(status: AuthStatus) {
|
|
|
|
this._loginChanged.next(status);
|
|
|
|
}
|
|
|
|
|
|
|
|
private handleError (error: Response) {
|
|
|
|
console.error(error);
|
2016-04-14 16:07:46 -04:00
|
|
|
return Observable.throw(error.json() || { error: 'Server error' });
|
2016-03-22 10:51:54 -04:00
|
|
|
}
|
|
|
|
}
|