diff options
Diffstat (limited to 'client/src/app/shared/account')
-rw-r--r-- | client/src/app/shared/account/account.model.ts | 15 | ||||
-rw-r--r-- | client/src/app/shared/account/account.service.ts | 31 |
2 files changed, 46 insertions, 0 deletions
diff --git a/client/src/app/shared/account/account.model.ts b/client/src/app/shared/account/account.model.ts index 0bdc76478..3d5176bdd 100644 --- a/client/src/app/shared/account/account.model.ts +++ b/client/src/app/shared/account/account.model.ts | |||
@@ -16,6 +16,21 @@ export class Account implements ServerAccount { | |||
16 | updatedAt: Date | 16 | updatedAt: Date |
17 | avatar: Avatar | 17 | avatar: Avatar |
18 | 18 | ||
19 | constructor (hash: ServerAccount) { | ||
20 | this.id = hash.id | ||
21 | this.uuid = hash.uuid | ||
22 | this.url = hash.url | ||
23 | this.name = hash.name | ||
24 | this.displayName = hash.displayName | ||
25 | this.description = hash.description | ||
26 | this.host = hash.host | ||
27 | this.followingCount = hash.followingCount | ||
28 | this.followersCount = hash.followersCount | ||
29 | this.createdAt = new Date(hash.createdAt.toString()) | ||
30 | this.updatedAt = new Date(hash.updatedAt.toString()) | ||
31 | this.avatar = hash.avatar | ||
32 | } | ||
33 | |||
19 | static GET_ACCOUNT_AVATAR_URL (account: Account) { | 34 | static GET_ACCOUNT_AVATAR_URL (account: Account) { |
20 | const absoluteAPIUrl = getAbsoluteAPIUrl() | 35 | const absoluteAPIUrl = getAbsoluteAPIUrl() |
21 | 36 | ||
diff --git a/client/src/app/shared/account/account.service.ts b/client/src/app/shared/account/account.service.ts new file mode 100644 index 000000000..8c66ae04a --- /dev/null +++ b/client/src/app/shared/account/account.service.ts | |||
@@ -0,0 +1,31 @@ | |||
1 | import { Injectable } from '@angular/core' | ||
2 | import 'rxjs/add/operator/catch' | ||
3 | import 'rxjs/add/operator/map' | ||
4 | import { environment } from '../../../environments/environment' | ||
5 | import { Observable } from 'rxjs/Observable' | ||
6 | import { Account } from '@app/shared/account/account.model' | ||
7 | import { RestExtractor } from '@app/shared/rest/rest-extractor.service' | ||
8 | import { RestService } from '@app/shared/rest/rest.service' | ||
9 | import { HttpClient } from '@angular/common/http' | ||
10 | import { Account as ServerAccount } from '../../../../../shared/models/actors/account.model' | ||
11 | import { ReplaySubject } from 'rxjs/ReplaySubject' | ||
12 | |||
13 | @Injectable() | ||
14 | export class AccountService { | ||
15 | static BASE_ACCOUNT_URL = environment.apiUrl + '/api/v1/accounts/' | ||
16 | |||
17 | accountLoaded = new ReplaySubject<Account>(1) | ||
18 | |||
19 | constructor ( | ||
20 | private authHttp: HttpClient, | ||
21 | private restExtractor: RestExtractor, | ||
22 | private restService: RestService | ||
23 | ) {} | ||
24 | |||
25 | getAccount (id: number): Observable<Account> { | ||
26 | return this.authHttp.get<ServerAccount>(AccountService.BASE_ACCOUNT_URL + id) | ||
27 | .map(accountHash => new Account(accountHash)) | ||
28 | .do(account => this.accountLoaded.next(account)) | ||
29 | .catch((res) => this.restExtractor.handleError(res)) | ||
30 | } | ||
31 | } | ||