authorizer.ts 1.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
// Copyright 2017 The Kubernetes Authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

15 16 17
import {HttpClient} from '@angular/common/http';
import {Injectable} from '@angular/core';
import {CanIResponse} from '@api/backendapi';
18 19
import {Observable, throwError} from 'rxjs';
import {catchError, switchMap} from 'rxjs/operators';
20

21
import {ERRORS} from '../../errors/errors';
22 23 24 25 26 27 28 29

@Injectable()
export class AuthorizerService {
  authorizationSubUrl_ = '/cani';

  constructor(private readonly http_: HttpClient) {}

  proxyGET<T>(url: string): Observable<T> {
S
Shu Muto 已提交
30 31
    return this.http_
      .get<CanIResponse>(`${url}${this.authorizationSubUrl_}`)
32 33 34 35 36
      .pipe(
        switchMap(response => {
          if (!response.allowed) {
            return throwError(ERRORS.forbidden);
          }
S
Shu Muto 已提交
37

38 39 40 41
          return this.http_.get<T>(url);
        })
      )
      .pipe(catchError(e => throwError(e)));
42 43
  }
}