summaryrefslogtreecommitdiffstats
path: root/webapp/src/app/services/xdsserver.service.ts
blob: 22e4ac95e60d8acef9ea5566d0992d2de6d04187 (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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
import { Injectable } from '@angular/core';
import { Http, Headers, RequestOptionsArgs, Response } from '@angular/http';
import { Location } from '@angular/common';
import { Observable } from 'rxjs/Observable';
import { Subject } from 'rxjs/Subject';
import { BehaviorSubject } from 'rxjs/BehaviorSubject';
import * as io from 'socket.io-client';

import { AlertService } from './alert.service';
import { ISdk } from './sdk.service';


// Import RxJs required methods
import 'rxjs/add/operator/map';
import 'rxjs/add/operator/catch';
import 'rxjs/add/observable/throw';
import 'rxjs/add/operator/mergeMap';


export interface IXDSConfigProject {
    id: string;
    path: string;
    hostSyncThingID: string;
    label?: string;
    defaultSdkID?: string;
}

interface IXDSBuilderConfig {
    ip: string;
    port: string;
    syncThingID: string;
}

interface IXDSFolderConfig {
    id: string;
    label: string;
    path: string;
    type: number;
    syncThingID: string;
    builderSThgID?: string;
    status?: string;
    defaultSdkID: string;
}

interface IXDSConfig {
    version: number;
    builder: IXDSBuilderConfig;
    folders: IXDSFolderConfig[];
}

export interface IXDSAgentTarball {
    os: string;
    fileUrl: string;
}

export interface IXDSAgentInfo {
    tarballs: IXDSAgentTarball[];
}

export interface ISdkMessage {
    wsID: string;
    msgType: string;
    data: any;
}

export interface ICmdOutput {
    cmdID: string;
    timestamp: string;
    stdout: string;
    stderr: string;
}

export interface ICmdExit {
    cmdID: string;
    timestamp: string;
    code: number;
    error: string;
}

export interface IServerStatus {
    WS_connected: boolean;

}

const FOLDER_TYPE_CLOUDSYNC = 2;

@Injectable()
export class XDSServerService {

    public CmdOutput$ = <Subject<ICmdOutput>>new Subject();
    public CmdExit$ = <Subject<ICmdExit>>new Subject();
    public Status$: Observable<IServerStatus>;

    private baseUrl: string;
    private wsUrl: string;
    private _status = { WS_connected: false };
    private statusSubject = <BehaviorSubject<IServerStatus>>new BehaviorSubject(this._status);


    private socket: SocketIOClient.Socket;

    constructor(private http: Http, private _window: Window, private alert: AlertService) {

        this.Status$ = this.statusSubject.asObservable();

        this.baseUrl = this._window.location.origin + '/api/v1';
        let re = this._window.location.origin.match(/http[s]?:\/\/([^\/]*)[\/]?/);
        if (re === null || re.length < 2) {
            console.error('ERROR: cannot determine Websocket url');
        } else {
            this.wsUrl = 'ws://' + re[1];
            this._handleIoSocket();
        }
    }

    private _WSState(sts: boolean) {
        this._status.WS_connected = sts;
        this.statusSubject.next(Object.assign({}, this._status));
    }

    private _handleIoSocket() {
        this.socket = io(this.wsUrl, { transports: ['websocket'] });

        this.socket.on('connect_error', (res) => {
            this._WSState(false);
            console.error('WS Connect_error ', res);
        });

        this.socket.on('connect', (res) => {
            this._WSState(true);
        });

        this.socket.on('disconnection', (res) => {
            this._WSState(false);
            this.alert.error('WS disconnection: ' + res);
        });

        this.socket.on('error', (err) => {
            console.error('WS error:', err);
        });

        this.socket.on('make:output', data => {
            this.CmdOutput$.next(Object.assign({}, <ICmdOutput>data));
        });

        this.socket.on('make:exit', data => {
            this.CmdExit$.next(Object.assign({}, <ICmdExit>data));
        });

        this.socket.on('exec:output', data => {
            this.CmdOutput$.next(Object.assign({}, <ICmdOutput>data));
        });

        this.socket.on('exec:exit', data => {
            this.CmdExit$.next(Object.assign({}, <ICmdExit>data));
        });

    }

    getSdks(): Observable<ISdk[]> {
        return this._get('/sdks');
    }

    getXdsAgentInfo(): Observable<IXDSAgentInfo> {
        return this._get('/xdsagent/info');
    }

    getProjects(): Observable<IXDSFolderConfig[]> {
        return this._get('/folders');
    }

    addProject(cfg: IXDSConfigProject): Observable<IXDSFolderConfig> {
        let folder: IXDSFolderConfig = {
            id: cfg.id || null,
            label: cfg.label || "",
            path: cfg.path,
            type: FOLDER_TYPE_CLOUDSYNC,
            syncThingID: cfg.hostSyncThingID,
            defaultSdkID: cfg.defaultSdkID || "",
        };
        return this._post('/folder', folder);
    }

    deleteProject(id: string): Observable<IXDSFolderConfig> {
        return this._delete('/folder/' + id);
    }

    exec(prjID: string, dir: string, cmd: string, sdkid?: string, args?: string[], env?: string[]): Observable<any> {
        return this._post('/exec',
            {
                id: prjID,
                rpath: dir,
                cmd: cmd,
                sdkid: sdkid || "",
                args: args || [],
                env: env || [],
            });
    }

    make(prjID: string, dir: string, sdkid?: string, args?: string[], env?: string[]): Observable<any> {
        return this._post('/make',
            {
                id: prjID,
                rpath: dir,
                sdkid: sdkid,
                args: args || [],
                env: env || [],
            });
    }


    private _attachAuthHeaders(options?: any) {
        options = options || {};
        let headers = options.headers || new Headers();
        // headers.append('Authorization', 'Basic ' + btoa('username:password'));
        headers.append('Accept', 'application/json');
        headers.append('Content-Type', 'application/json');
        // headers.append('Access-Control-Allow-Origin', '*');

        options.headers = headers;
        return options;
    }

    private _get(url: string): Observable<any> {
        return this.http.get(this.baseUrl + url, this._attachAuthHeaders())
            .map((res: Response) => res.json())
            .catch(this._decodeError);
    }
    private _post(url: string, body: any): Observable<any> {
        return this.http.post(this.baseUrl + url, JSON.stringify(body), this._attachAuthHeaders())
            .map((res: Response) => res.json())
            .catch((error) => {
                return this._decodeError(error);
            });
    }
    private _delete(url: string): Observable<any> {
        return this.http.delete(this.baseUrl + url, this._attachAuthHeaders())
            .map((res: Response) => res.json())
            .catch(this._decodeError);
    }

    private _decodeError(err: any) {
        let e: string;
        if (typeof err === "object") {
            if (err.statusText) {
                e = err.statusText;
            } else if (err.error) {
                e = String(err.error);
            } else {
                e = JSON.stringify(err);
            }
        } else {
            e = err.json().error || 'Server error';
        }
        return Observable.throw(e);
    }
}