2016-04-26 21:10:05 +08:00
|
|
|
///<reference path="../../browser.d.ts"/>
|
|
|
|
|
2016-05-04 23:20:21 +08:00
|
|
|
import {Injectable} from '@angular/core';
|
2016-05-01 00:01:54 +08:00
|
|
|
import {NetworkService} from "../model/network/network.service.ts";
|
2016-05-04 23:20:21 +08:00
|
|
|
import {Http} from "@angular/http";
|
2016-05-02 03:30:43 +08:00
|
|
|
import {Message} from "../../../common/entities/Message";
|
|
|
|
import {User} from "../../../common/entities/User";
|
2016-04-26 21:10:05 +08:00
|
|
|
|
|
|
|
@Injectable()
|
2016-05-05 23:51:51 +08:00
|
|
|
export class AdminService {
|
2016-04-26 21:10:05 +08:00
|
|
|
|
2016-05-05 23:51:51 +08:00
|
|
|
|
|
|
|
constructor(private _networkService:NetworkService){
|
2016-04-26 21:10:05 +08:00
|
|
|
}
|
|
|
|
|
2016-05-02 03:30:43 +08:00
|
|
|
public createUser(user:User): Promise<Message<string>>{
|
2016-05-05 23:51:51 +08:00
|
|
|
return this._networkService.putJson("/user",{newUser:user});
|
2016-04-26 21:10:05 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-05-03 20:29:24 +08:00
|
|
|
public getUsers():Promise<Message<Array<User>>>{
|
2016-05-05 23:51:51 +08:00
|
|
|
return this._networkService.getJson("/user/list");
|
2016-05-03 20:29:24 +08:00
|
|
|
}
|
2016-04-26 21:10:05 +08:00
|
|
|
|
|
|
|
|
2016-05-03 20:29:24 +08:00
|
|
|
public deleteUser(user:User) {
|
2016-05-05 23:51:51 +08:00
|
|
|
return this._networkService.deleteJson("/user/"+user.id);
|
2016-05-03 20:29:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
public updateRole(user:User) {
|
2016-05-05 23:51:51 +08:00
|
|
|
return this._networkService.postJson("/user/"+user.id+"/role",{newRole:user.role});
|
2016-05-03 20:29:24 +08:00
|
|
|
}
|
2016-04-26 21:10:05 +08:00
|
|
|
}
|