Skip to content
Snippets Groups Projects
data.service.ts 1.27 KiB
Newer Older
import { HttpClient } from '@angular/common/http';
jvanboxtel@wisc.edu's avatar
jvanboxtel@wisc.edu committed
import { Injectable } from '@angular/core';
import { Response } from '@angular/http';
import { throwError, Observable } from 'rxjs';
import { catchError, map } from 'rxjs/operators';
jvanboxtel@wisc.edu's avatar
jvanboxtel@wisc.edu committed
import { ConfigService } from './config.service';
import { Course } from './models/course';
import { DegreePlan } from './models/degree-plan';
import { Term } from './models/term';
jvanboxtel@wisc.edu's avatar
jvanboxtel@wisc.edu committed

@Injectable()
export class DataService {
	private plannerApiUrl: string;
	private searchApiUrl: string;
pnogal's avatar
pnogal committed
	constructor(private http: HttpClient, private configService: ConfigService) {
		this.plannerApiUrl = this.configService.apiPlannerUrl;
		this.searchApiUrl = this.configService.apiSearchUrl;
jvanboxtel@wisc.edu's avatar
jvanboxtel@wisc.edu committed
	}
pnogal's avatar
pnogal committed

	getDegreePlans(): Observable<DegreePlan[]> {
		return this.http.get<DegreePlan[]>(this.plannerApiUrl + '/degreePlan')
			.pipe(catchError(this.errorHandler));
	}

	getDegreePlannerCourseData(): Observable<Course[]> {
		return this.http.get<Course[]>(this.plannerApiUrl + '/degreePlan/520224/termcourses')
			.pipe(catchError(this.errorHandler));
	}

	getTerms(): Observable<Term[]> {
		return this.http.get<Term[]>(this.searchApiUrl + '/terms')
			.pipe(catchError(this.errorHandler));
pnogal's avatar
pnogal committed
	}

	private errorHandler(error: Response) {
		return throwError(error || 'Server Error');
	}
jvanboxtel@wisc.edu's avatar
jvanboxtel@wisc.edu committed
}