aboutsummaryrefslogtreecommitdiffstats
path: root/deprecated-workflow-designer/sdc-workflow-designer-ui/src/app/services/auth.service.ts
blob: a8e607532aec5e621b0d05abdaf61300cbee3079 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
/**
 * Copyright (c) 2017 ZTE Corporation.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * and the Apache License 2.0 which both accompany this distribution,
 * and are available at http://www.eclipse.org/legal/epl-v10.html
 * and http://www.apache.org/licenses/LICENSE-2.0
 *
 * Contributors:
 *     ZTE - initial API and implementation and/or initial documentation
 */
import { Injectable } from '@angular/core';
import { Http } from '@angular/http';
import { BroadcastService } from './broadcast.service';

@Injectable()
export class AuthService {
  private static AuthUrl = "/api/oauth2/v1/perms/user/operations";
  private static AllOperations = ["operation.apds.create", "operation.apds.delete", "operation.apds.modify",
    "operation.apds.view", "operation.apds.import", "operation.apds.export", "operation.apds.deploy",
    "operation.apds.test"];
  private static ModifyOperation = 'operation.apds.modify';

  constructor(private http: Http, private broadcastService: BroadcastService) {
    this.checkRights();
    // keep alive
    // setInterval(() => {
    //   console.log(`Keep session alive. Request per 3 minutes. ${new Date()}`);
    //   this.checkRights();
    // }, 180000);
  }
  public checkRights() {
    // let data = { operations: AuthService.AllOperations };
    // this.http.post(AuthService.AuthUrl, data).subscribe(res => {
    //   let hasRightOP = res.json().operations;
    //   if (hasRightOP.length > 0) {
    //     this.broadcastService.broadcast(this.broadcastService.openRight, true);
    //     if (hasRightOP.indexOf(AuthService.ModifyOperation) > -1) {
    //       this.broadcastService.broadcast(this.broadcastService.saveRight, true);
    //     } else {
    //       this.broadcastService.broadcast(this.broadcastService.saveRight, false);
    //     }
    //   } else {
    //     this.broadcastService.broadcast(this.broadcastService.openRight, false);
    //     this.broadcastService.broadcast(this.broadcastService.saveRight, false);
    //   }
    // }, error => {
    //   switch (error.status) {
    //     // Incase oauth service not exists or operation set not exists
    //     case 404:
    //     case 501:
    //     case 502:
    //       this.broadcastService.broadcast(this.broadcastService.openRight, true);
    //       this.broadcastService.broadcast(this.broadcastService.saveRight, true);
    //       break;
    //     default:
    //       this.broadcastService.broadcast(this.broadcastService.openRight, false);
    //       this.broadcastService.broadcast(this.broadcastService.saveRight, false);
    //       break;
    //   }
    // });
    this.broadcastService.broadcast(this.broadcastService.openRight, true);
    this.broadcastService.broadcast(this.broadcastService.saveRight, true);
  }
}