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

Last change on this file was b738035, checked in by Ema <ema_spirova@…>, 2 years ago

signup/login server errors on front and remove location from planner

  • Property mode set to 100644
File size: 2.2 KB
RevLine 
[84d0fbb]1import { HttpClient, HttpHeaders } from "@angular/common/http";
[6a3a178]2import { Injectable } from "@angular/core";
3import { Observable } from "rxjs";
[6a80231]4import { PlannerDto } from "../_models/dto/plannerDto";
[b738035]5import { PlannerLocationDto } from "../_models/dto/plannerLocationDto";
[6a3a178]6import { Planner } from "../_models/planner";
7
8@Injectable({
9 providedIn: 'root'
10})
[84d0fbb]11export class PlannerService {
12
13 httpHeaders: HttpHeaders = new HttpHeaders({
[bdd6491]14 'Authorization': '' + sessionStorage.getItem("token"),
[84d0fbb]15 'Accept': 'application/json',
16 'Content-Type': 'application/json'
[bdd6491]17 });
[84d0fbb]18
[bdd6491]19 constructor(private httpClient: HttpClient) {
[6a3a178]20 }
[ceaed42]21
[bdd6491]22
23 getAllPlanners(): Observable<Planner[]> {
[84d0fbb]24 let url = "http://localhost:8080/api/planners/user";
25 console.log("SERVID: " + sessionStorage.getItem("token"));
[bdd6491]26 console.log(this.httpHeaders.get('Authorization'));
27 return this.httpClient.get<Planner[]>(url, { headers: this.httpHeaders });
[6a3a178]28 }
[6a80231]29
[bdd6491]30 postInitialPlanner(plannerDto: PlannerDto): Observable<Planner> {
[6a80231]31 let url = "http://localhost:8080/api/planner/new";
[b738035]32 return this.httpClient.post<Planner>(url, plannerDto, {headers: this.httpHeaders});
[6a80231]33 }
34
[bdd6491]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 });
[6c1585f]38 }
39
[bdd6491]40 getPlannerById(id: number): Observable<Planner> {
[6c1585f]41 let url = "http://localhost:8080/api/planner/" + id;
42 return this.httpClient.get<Planner>(url);
[6a80231]43 }
[ceaed42]44
[bdd6491]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 }
[b738035]49
50 deleteLocationFromPlanner(plannerLocationDto : PlannerLocationDto) {
51 let url = "http://localhost:8080/api/delete-location";
52 const options = {
53 body: {
54 "plannerId": plannerLocationDto.plannerId,
55 "locationId": plannerLocationDto.locationId
56 }
57 }
58 return this.httpClient.request('delete', url, options);
59 }
60
61
[6a3a178]62}
Note: See TracBrowser for help on using the repository browser.