source: trip-planner-front/src/app/_services/planner.service.ts@ bdd6491

Last change on this file since bdd6491 was bdd6491, checked in by Ema <ema_spirova@…>, 3 years ago

pre final presentation

  • Property mode set to 100644
File size: 1.7 KB
Line 
1import { HttpClient, HttpHeaders } from "@angular/common/http";
2import { Injectable } from "@angular/core";
3import { Observable } from "rxjs";
4import { PlannerDto } from "../_models/dto/plannerDto";
5import { Planner } from "../_models/planner";
6
7@Injectable({
8 providedIn: 'root'
9})
10export class PlannerService {
11
12 httpHeaders: HttpHeaders = new HttpHeaders({
13 'Authorization': '' + sessionStorage.getItem("token"),
14 'Accept': 'application/json',
15 'Content-Type': 'application/json'
16 });
17
18
19 constructor(private httpClient: HttpClient) {
20 }
21
22
23 getAllPlanners(): Observable<Planner[]> {
24 let url = "http://localhost:8080/api/planners/user";
25 console.log("SERVID: " + sessionStorage.getItem("token"));
26 console.log(this.httpHeaders.get('Authorization'));
27 return this.httpClient.get<Planner[]>(url, { headers: this.httpHeaders });
28 }
29
30 postInitialPlanner(plannerDto: PlannerDto): Observable<Planner> {
31 let url = "http://localhost:8080/api/planner/new";
32 return this.httpClient.post<Planner>(url, plannerDto);
33 }
34
35 updatePlanner(id: number, plannerDto: PlannerDto): Observable<Planner> {
36 let url = "http://localhost:8080/api/edit/planner/" + id;
37 return this.httpClient.put<Planner>(url, plannerDto, { headers: this.httpHeaders });
38 }
39
40 getPlannerById(id: number): Observable<Planner> {
41 let url = "http://localhost:8080/api/planner/" + id;
42 return this.httpClient.get<Planner>(url);
43 }
44
45 deletePlannerById(id: number): Observable<Planner> {
46 let url = "http://localhost:8080/api/delete/" + id;
47 return this.httpClient.delete<Planner>(url, { headers: this.httpHeaders });
48 }
49}
Note: See TracBrowser for help on using the repository browser.