1
+ import { Injectable } from "@angular/core" ;
2
+ import { HttpClient , HttpHeaders } from '@angular/common/http' ;
3
+ import { Observable , of } from 'rxjs' ;
4
+ import { catchError , map , tap } from 'rxjs/operators' ;
5
+
6
+ import { Actor } from './actor' ;
7
+ import { MessageService } from "./message.service" ;
8
+
9
+ const httpOptions = {
10
+ headers : new HttpHeaders ( { 'Content-Type' : 'application/json' } )
11
+ } ;
12
+
13
+
14
+ @Injectable ( { providedIn : 'root' } )
15
+ export class ActorService {
16
+
17
+ private actorsUrl = 'api/actors' ; // URL to web api
18
+
19
+ constructor (
20
+ private http : HttpClient ,
21
+ private messageService : MessageService ) { }
22
+
23
+ /** GET actors from the server */
24
+ getActors ( ) : Observable < Actor [ ] > {
25
+ return this . http . get < Actor [ ] > ( this . actorsUrl )
26
+ . pipe (
27
+ tap ( actors => this . log ( `fetched actors` ) ) ,
28
+ catchError ( this . handleError ( 'getActors' , [ ] ) )
29
+ ) ;
30
+ }
31
+
32
+ /** GET actor by id. Return `undefined` when id not found */
33
+ getActorNo404 < Data > ( id : number ) : Observable < Actor > {
34
+ const url = `${ this . actorsUrl } /?id=${ id } ` ;
35
+ return this . http . get < Actor [ ] > ( url )
36
+ . pipe (
37
+ map ( actors => actors [ 0 ] ) , // returns a {0|1} element array
38
+ tap ( h => {
39
+ const outcome = h ? `fetched` : `did not find` ;
40
+ this . log ( `${ outcome } actor id=${ id } ` ) ;
41
+ } ) ,
42
+ catchError ( this . handleError < Actor > ( `getActor id=${ id } ` ) )
43
+ ) ;
44
+ }
45
+
46
+ /** GET actor by id. Will 404 if id not found */
47
+ getActor ( id : number ) : Observable < Actor > {
48
+ const url = `${ this . actorsUrl } /${ id } ` ;
49
+ return this . http . get < Actor > ( url ) . pipe (
50
+ tap ( _ => this . log ( `fetched actor id=${ id } ` ) ) ,
51
+ catchError ( this . handleError < Actor > ( `getActor id=${ id } ` ) )
52
+ ) ;
53
+ }
54
+
55
+ /* GET actors whose name contains search term */
56
+ searchActors ( term : string ) : Observable < Actor [ ] > {
57
+ if ( ! term . trim ( ) ) {
58
+ // if not search term, return empty hero array.
59
+ return of ( [ ] ) ;
60
+ }
61
+ return this . http . get < Actor [ ] > ( `${ this . actorsUrl } /?name=${ term } ` ) . pipe (
62
+ tap ( _ => this . log ( `found actors matching "${ term } "` ) ) ,
63
+ catchError ( this . handleError < Actor [ ] > ( 'searchActors' , [ ] ) )
64
+ ) ;
65
+ }
66
+
67
+ //////// Save methods //////////
68
+
69
+ /** POST: add a new actor to the server */
70
+ addActor ( actor : Actor ) : Observable < Actor > {
71
+ return this . http . post < Actor > ( this . actorsUrl , actor , httpOptions ) . pipe (
72
+ tap ( ( actor : Actor ) => this . log ( `added actor w/ id=${ actor . id } ` ) ) ,
73
+ catchError ( this . handleError < Actor > ( 'addActor' ) )
74
+ ) ;
75
+ }
76
+
77
+ /** DELETE: delete the actor from the server */
78
+ deleteActor ( actor : Actor | number ) : Observable < Actor > {
79
+ const id = typeof actor === 'number' ? actor : actor . id ;
80
+ const url = `${ this . actorsUrl } /${ id } ` ;
81
+
82
+ return this . http . delete < Actor > ( url , httpOptions ) . pipe (
83
+ tap ( _ => this . log ( `deleted actor id=${ id } ` ) ) ,
84
+ catchError ( this . handleError < Actor > ( 'deleteActor' ) )
85
+ ) ;
86
+ }
87
+
88
+ /** PUT: update the actor on the server */
89
+ updateActor ( actor : Actor ) : Observable < any > {
90
+ return this . http . put ( this . actorsUrl , actor , httpOptions ) . pipe (
91
+ tap ( _ => this . log ( `updated actor id=${ actor . id } ` ) ) ,
92
+ catchError ( this . handleError < any > ( 'updateActor' ) )
93
+ ) ;
94
+ }
95
+
96
+ /**
97
+ * Handle Http operation that failed.
98
+ * Let the app continue.
99
+ * @param operation - name of the operation that failed
100
+ * @param result - optional value to return as the observable result
101
+ */
102
+ private handleError < T > ( operation = 'operation' , result ?: T ) {
103
+ return ( error : any ) : Observable < T > => {
104
+
105
+ // TODO: send the error to remote logging infrastructure
106
+ console . error ( error ) ; // log to console instead
107
+
108
+ // TODO: better job of transforming error for user consumption
109
+ this . log ( `${ operation } failed: ${ error . message } ` ) ;
110
+
111
+ // Let the app keep running by returning an empty result.
112
+ return of ( result as T ) ;
113
+ } ;
114
+ }
115
+
116
+ /** Log a ActorService message with the MessageService */
117
+ private log ( message : string ) {
118
+ this . messageService . add ( 'ActorService: ' + message ) ;
119
+ }
120
+ }
0 commit comments