diff options
author | Chocobozzz <me@florianbigard.com> | 2020-06-23 14:10:17 +0200 |
---|---|---|
committer | Chocobozzz <chocobozzz@cpy.re> | 2020-06-23 16:00:49 +0200 |
commit | 67ed6552b831df66713bac9e672738796128d33f (patch) | |
tree | 59c97d41e0b49d75a90aa3de987968ab9b1ff447 /client/src/app/shared/account/account.service.ts | |
parent | 0c4bacbff53bc732f5a2677d62a6ead7752e2405 (diff) | |
download | PeerTube-67ed6552b831df66713bac9e672738796128d33f.tar.gz PeerTube-67ed6552b831df66713bac9e672738796128d33f.tar.zst PeerTube-67ed6552b831df66713bac9e672738796128d33f.zip |
Reorganize client shared modules
Diffstat (limited to 'client/src/app/shared/account/account.service.ts')
-rw-r--r-- | client/src/app/shared/account/account.service.ts | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/client/src/app/shared/account/account.service.ts b/client/src/app/shared/account/account.service.ts deleted file mode 100644 index 6b261cf53..000000000 --- a/client/src/app/shared/account/account.service.ts +++ /dev/null | |||
@@ -1,29 +0,0 @@ | |||
1 | import { map, tap, catchError } from 'rxjs/operators' | ||
2 | import { Injectable } from '@angular/core' | ||
3 | import { environment } from '../../../environments/environment' | ||
4 | import { Observable, ReplaySubject } from 'rxjs' | ||
5 | import { Account } from '@app/shared/account/account.model' | ||
6 | import { RestExtractor } from '@app/shared/rest/rest-extractor.service' | ||
7 | import { HttpClient } from '@angular/common/http' | ||
8 | import { Account as ServerAccount } from '../../../../../shared/models/actors/account.model' | ||
9 | |||
10 | @Injectable() | ||
11 | export class AccountService { | ||
12 | static BASE_ACCOUNT_URL = environment.apiUrl + '/api/v1/accounts/' | ||
13 | |||
14 | accountLoaded = new ReplaySubject<Account>(1) | ||
15 | |||
16 | constructor ( | ||
17 | private authHttp: HttpClient, | ||
18 | private restExtractor: RestExtractor | ||
19 | ) {} | ||
20 | |||
21 | getAccount (id: number | string): Observable<Account> { | ||
22 | return this.authHttp.get<ServerAccount>(AccountService.BASE_ACCOUNT_URL + id) | ||
23 | .pipe( | ||
24 | map(accountHash => new Account(accountHash)), | ||
25 | tap(account => this.accountLoaded.next(account)), | ||
26 | catchError(res => this.restExtractor.handleError(res)) | ||
27 | ) | ||
28 | } | ||
29 | } | ||