Commit 0a42143f authored by ibuler's avatar ibuler

Merge branch 'dev_beta' into dev

parents 7eaa5792 23b0491a
...@@ -3,31 +3,11 @@ ...@@ -3,31 +3,11 @@
"target": "http://127.0.0.1:8080", "target": "http://127.0.0.1:8080",
"secure": false "secure": false
}, },
"/luna/i18n": { "/koko": {
"target": "http://127.0.0.1:5001",
"secure": false
},
"/socket.io/": {
"target": "http://127.0.0.1:5000", "target": "http://127.0.0.1:5000",
"secure": false, "secure": false,
"ws": true "ws": true
}, },
"/coco/": {
"target": "http://127.0.0.1:5000",
"secure:": false,
"ws": true
},
"/static": {
"target": "http://127.0.0.1:5000",
"secure:": false
},
"/rdp/socket.io/": {
"target": "http://localhost:9250",
"pathRewrite": {
"^/rdp": ""
},
"secure": false
},
"/media/": { "/media/": {
"target": "http://127.0.0.1:8080", "target": "http://127.0.0.1:8080",
"secure": false "secure": false
......
...@@ -9,7 +9,7 @@ import {MAT_LABEL_GLOBAL_OPTIONS} from '@angular/material'; ...@@ -9,7 +9,7 @@ import {MAT_LABEL_GLOBAL_OPTIONS} from '@angular/material';
// service // service
import {AllServices} from '@app/services'; import {AllServices} from '@app/services';
import {AppRouterModule} from './router/router.module'; import {AppRouterModule} from './router.module';
import {Pipes} from './pipes/pipes'; import {Pipes} from './pipes/pipes';
import {AppComponent} from './pages/app.component'; import {AppComponent} from './pages/app.component';
import {PagesComponents} from './pages/pages.component'; import {PagesComponents} from './pages/pages.component';
......
...@@ -4,7 +4,6 @@ ...@@ -4,7 +4,6 @@
</ul> </ul>
<ul id="remoteAppsTree" class="ztree"> <ul id="remoteAppsTree" class="ztree">
{{ "Loading"|trans }} ...
</ul> </ul>
</div> </div>
......
...@@ -97,7 +97,7 @@ export class ElementAssetTreeComponent implements OnInit, OnDestroy { ...@@ -97,7 +97,7 @@ export class ElementAssetTreeComponent implements OnInit, OnDestroy {
if (this.isLoadTreeAsync) { if (this.isLoadTreeAsync) {
setting['async'] = { setting['async'] = {
enable: true, enable: true,
url: '/api/perms/v1/users/nodes/children-with-assets/tree/?cache_policy=1', url: '/api/v1/perms/users/nodes/children-with-assets/tree/?cache_policy=1',
autoParam: ['id=key', 'name=n', 'level=lv'], autoParam: ['id=key', 'name=n', 'level=lv'],
type: 'get' type: 'get'
}; };
...@@ -134,7 +134,7 @@ export class ElementAssetTreeComponent implements OnInit, OnDestroy { ...@@ -134,7 +134,7 @@ export class ElementAssetTreeComponent implements OnInit, OnDestroy {
}; };
this._http.getMyGrantedRemoteApps().subscribe( this._http.getMyGrantedRemoteApps().subscribe(
resp => { resp => {
if (!resp) { if (resp.length === 1) {
return; return;
} }
const tree = $.fn.zTree.init($('#remoteAppsTree'), setting, resp); const tree = $.fn.zTree.init($('#remoteAppsTree'), setting, resp);
......
...@@ -41,27 +41,36 @@ export class ElementConnectComponent implements OnInit, OnDestroy { ...@@ -41,27 +41,36 @@ export class ElementConnectComponent implements OnInit, OnDestroy {
} }
}); });
const loginTo = this._appSvc.getQueryString('login_to'); const loginTo = this._appSvc.getQueryString('login_to');
if (loginTo && !this.hasLoginTo) { const tp = this._appSvc.getQueryString('type') || 'asset';
this._http.filterMyGrantedAssetsById(loginTo).subscribe( if (this.hasLoginTo || !loginTo) {
nodes => { return;
if (nodes.length === 1) { }
this.hasLoginTo = true; switch (tp) {
const node = nodes[0]; case 'asset':
this.Connect(node); this._http.filterMyGrantedAssetsById(loginTo).subscribe(
nodes => {
if (nodes.length === 1) {
this.hasLoginTo = true;
const node = nodes[0];
this.Connect(node);
}
} }
} );
); break;
this._http.getMyGrantedRemoteApps(loginTo).subscribe( case 'remote_app':
nodes => { this._http.getMyGrantedRemoteApps(loginTo).subscribe(
if (nodes.length === 1) { nodes => {
this.hasLoginTo = true; if (nodes.length === 1) {
const node = nodes[0]; this.hasLoginTo = true;
this.Connect(node); const node = nodes[0];
this.Connect(node);
}
} }
} );
); break;
} }
} }
ngOnDestroy(): void { ngOnDestroy(): void {
connectEvt.unsubscribe(); connectEvt.unsubscribe();
} }
......
...@@ -13,8 +13,10 @@ import {ElementDialogAlertComponent} from './dialog/dialog.service'; ...@@ -13,8 +13,10 @@ import {ElementDialogAlertComponent} from './dialog/dialog.service';
import {ElementGuacamoleComponent} from './guacamole/guacamole.component'; import {ElementGuacamoleComponent} from './guacamole/guacamole.component';
import {ElementSshTermComponent} from './ssh-term/ssh-term.component'; import {ElementSshTermComponent} from './ssh-term/ssh-term.component';
import {ElementConnectComponent, AssetTreeDialogComponent, ManualPasswordDialogComponent} from './connect/connect.component'; import {ElementConnectComponent, AssetTreeDialogComponent, ManualPasswordDialogComponent} from './connect/connect.component';
import {ElementSftpComponent} from '@app/elements/sftp/sftp.component'; import {ElementSftpComponent} from './sftp/sftp.component';
import {ElementSettingComponent} from '@app/elements/setting/setting.component'; import {ElementSettingComponent} from './setting/setting.component';
import {ElementReplayGuacamoleComponent} from './replay/guacamole/guacamole.component';
import {ElementReplayJsonComponent} from './replay/json/json.component';
export const ElementComponents = [ export const ElementComponents = [
ElementLeftBarComponent, ElementLeftBarComponent,
...@@ -33,6 +35,8 @@ export const ElementComponents = [ ...@@ -33,6 +35,8 @@ export const ElementComponents = [
ElementSshTermComponent, ElementSshTermComponent,
ElementConnectComponent, ElementConnectComponent,
ElementSftpComponent, ElementSftpComponent,
ElementReplayGuacamoleComponent,
ElementReplayJsonComponent,
AssetTreeDialogComponent, AssetTreeDialogComponent,
ChangLanWarningDialogComponent, ChangLanWarningDialogComponent,
ManualPasswordDialogComponent, ManualPasswordDialogComponent,
......
...@@ -41,7 +41,7 @@ export class ElementNavComponent implements OnInit { ...@@ -41,7 +41,7 @@ export class ElementNavComponent implements OnInit {
click(event) { click(event) {
switch (event) { switch (event) {
case 'ConnectSFTP': { case 'ConnectSFTP': {
window.open('/coco/elfinder/sftp/'); window.open('/koko/elfinder/sftp/');
break; break;
} }
case 'HideLeft': { case 'HideLeft': {
......
import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { ReplayGuacamoleComponent } from './guacamole.component'; import { ElementReplayGuacamoleComponent } from './guacamole.component';
describe('ReplayGuacamoleComponent', () => { describe('ReplayGuacamoleComponent', () => {
let component: ReplayGuacamoleComponent; let component: ElementReplayGuacamoleComponent;
let fixture: ComponentFixture<ReplayGuacamoleComponent>; let fixture: ComponentFixture<ElementReplayGuacamoleComponent>;
beforeEach(async(() => { beforeEach(async(() => {
TestBed.configureTestingModule({ TestBed.configureTestingModule({
declarations: [ ReplayGuacamoleComponent ] declarations: [ ElementReplayGuacamoleComponent ]
}) })
.compileComponents(); .compileComponents();
})); }));
beforeEach(() => { beforeEach(() => {
fixture = TestBed.createComponent(ReplayGuacamoleComponent); fixture = TestBed.createComponent(ElementReplayGuacamoleComponent);
component = fixture.componentInstance; component = fixture.componentInstance;
fixture.detectChanges(); fixture.detectChanges();
}); });
......
import { Component, OnInit, Input } from '@angular/core'; import { Component, OnInit, Input } from '@angular/core';
import * as Guacamole from 'guacamole-common-js/dist/guacamole-common'; import * as Guacamole from 'guacamole-common-js/dist/guacamole-common';
import { Replay } from '../replay.model'; import { Replay } from '@app/model';
function zeroPad(num, minLength) { function zeroPad(num, minLength) {
let str = num.toString(); let str = num.toString();
...@@ -46,11 +46,11 @@ function formatTime(millis: number) { ...@@ -46,11 +46,11 @@ function formatTime(millis: number) {
@Component({ @Component({
selector: 'app-replay-guacamole', selector: 'elements-replay-guacamole',
templateUrl: './guacamole.component.html', templateUrl: './guacamole.component.html',
styleUrls: ['./guacamole.component.scss'] styleUrls: ['./guacamole.component.scss']
}) })
export class ReplayGuacamoleComponent implements OnInit { export class ElementReplayGuacamoleComponent implements OnInit {
isPlaying = false; isPlaying = false;
recording: any; recording: any;
playerRef: any; playerRef: any;
......
import {Component, Input, OnInit} from '@angular/core'; import {Component, Input, OnInit} from '@angular/core';
import {Terminal} from 'xterm'; import {Terminal} from 'xterm';
import {HttpService, LogService} from '@app/services'; import {HttpService, LogService} from '@app/services';
import {Replay} from '../replay.model'; import {Replay} from '@app/model';
function zeroPad(num, minLength) { function zeroPad(num, minLength) {
let str = num.toString(); let str = num.toString();
...@@ -47,11 +47,11 @@ function formatTime(millis: number) { ...@@ -47,11 +47,11 @@ function formatTime(millis: number) {
@Component({ @Component({
selector: 'app-replay-json', selector: 'elements-replay-json',
templateUrl: './json.component.html', templateUrl: './json.component.html',
styleUrls: ['./json.component.css'] styleUrls: ['./json.component.css']
}) })
export class JsonComponent implements OnInit { export class ElementReplayJsonComponent implements OnInit {
isPlaying = false; isPlaying = false;
recording: any; recording: any;
playerRef: any; playerRef: any;
......
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
</mat-form-field> </mat-form-field>
<mat-form-field> <mat-form-field>
<input [(value)]="setting.fontSize" matInput placeholder='{{"Font size"|trans}}' name="fontSize" type="number" min="5" max="60" > <input [(ngModel)]="setting.fontSize" matInput placeholder='{{"Font size"|trans}}' name="fontSize" type="number" min="5" max="60" >
</mat-form-field> </mat-form-field>
<mat-form-field> <mat-form-field>
......
import {Component, Inject, OnInit} from '@angular/core'; import {Component, OnInit} from '@angular/core';
import {MAT_DIALOG_DATA, MatDialogRef} from '@angular/material'; import { MatDialogRef} from '@angular/material';
import {SettingService} from '@app/services'; import {SettingService} from '@app/services';
import {Setting} from '@app/model'; import {Setting} from '@app/model';
...@@ -10,12 +10,11 @@ import {Setting} from '@app/model'; ...@@ -10,12 +10,11 @@ import {Setting} from '@app/model';
styles: ['.mat-form-field { width: 100%;}'] styles: ['.mat-form-field { width: 100%;}']
}) })
export class ElementSettingComponent implements OnInit { export class ElementSettingComponent implements OnInit {
solutionsChoices = ['Auto', '1024x768', '1366x768', '1400x900']; solutionsChoices = ['Auto', '1024x768', '1366x768', '1600x900', '1920×1080'];
boolChoices = [{name: 'Yes', value: '1'}, {name: 'No', value: '0'}]; boolChoices = [{name: 'Yes', value: '1'}, {name: 'No', value: '0'}];
setting: Setting; setting: Setting;
constructor(public dialogRef: MatDialogRef<ElementSettingComponent>, constructor(public dialogRef: MatDialogRef<ElementSettingComponent>,
@Inject(MAT_DIALOG_DATA) public data: any,
private settingSrv: SettingService) { private settingSrv: SettingService) {
} }
......
import {Component, OnInit, Input, ElementRef, ViewChild} from '@angular/core'; import {Component, OnInit, Input, ElementRef, ViewChild} from '@angular/core';
import {DataStore} from '@app/globals';
import {DomSanitizer} from '@angular/platform-browser'; import {DomSanitizer} from '@angular/platform-browser';
@Component({ @Component({
...@@ -16,7 +15,7 @@ export class ElementSftpComponent implements OnInit { ...@@ -16,7 +15,7 @@ export class ElementSftpComponent implements OnInit {
} }
ngOnInit() { ngOnInit() {
let _target = '/coco/elfinder/sftp/'; let _target = '/koko/elfinder/sftp/';
if (this.host) { if (this.host) {
// _target += 'f5857eee-c114-4564-af8f-96329c400a8a' + '/'; // _target += 'f5857eee-c114-4564-af8f-96329c400a8a' + '/';
_target += this.host.id + '/'; _target += this.host.id + '/';
......
...@@ -8,7 +8,7 @@ import {DataStore as _DataStore, Browser as _Browser, Video as _Video, Monitor a ...@@ -8,7 +8,7 @@ import {DataStore as _DataStore, Browser as _Browser, Video as _Video, Monitor a
const scheme = document.location.protocol === 'https:' ? 'wss' : 'ws'; const scheme = document.location.protocol === 'https:' ? 'wss' : 'ws';
const port = document.location.port ? ':' + document.location.port : ''; const port = document.location.port ? ':' + document.location.port : '';
const hostname = document.location.hostname; const hostname = document.location.hostname;
const wsURL = `${scheme}://${hostname}${port}/socket.io/`; const wsURL = `${scheme}://${hostname}${port}/koko/ws/`;
export let TermWS = null; export let TermWS = null;
export const emitter = new(EventEmitter); export const emitter = new(EventEmitter);
......
...@@ -188,8 +188,21 @@ export class Monitor { ...@@ -188,8 +188,21 @@ export class Monitor {
export class Setting { export class Setting {
rdpSolution: string = '1024x768'; rdpSolution: string = 'Auto';
fontSize: number = 14; fontSize: number = 14;
isLoadTreeAsync: string = '1'; isLoadTreeAsync: string = '1';
isSkipAllManualPassword: string = '0'; isSkipAllManualPassword: string = '0';
} }
export class Replay {
id: string;
src: string;
type: string;
status: string;
timelist: Array<number>;
totalTime: number;
json: any;
height: number;
width: number;
}
...@@ -5,20 +5,17 @@ import {PagesMonitorComponent} from './monitor/monitor.component'; ...@@ -5,20 +5,17 @@ import {PagesMonitorComponent} from './monitor/monitor.component';
import {PagesReplayComponent} from './replay/replay.component'; import {PagesReplayComponent} from './replay/replay.component';
import {PagesNotFoundComponent} from './not-found/not-found.component'; import {PagesNotFoundComponent} from './not-found/not-found.component';
import {PagesLoginComponent} from './login/login.component'; import {PagesLoginComponent} from './login/login.component';
import {JsonComponent} from './replay/json/json.component';
import {PagesMonitorLinuxComponent} from './monitor/linux/linux.component'; import {PagesMonitorLinuxComponent} from './monitor/linux/linux.component';
import {PagesMonitorWindowsComponent} from './monitor/windows/windows.component'; import {PagesMonitorWindowsComponent} from './monitor/windows/windows.component';
import {ReplayGuacamoleComponent} from './replay/guacamole/guacamole.component';
export const PagesComponents = [ export const PagesComponents = [
PageMainComponent, PageMainComponent,
PagesBlankComponent, PagesBlankComponent,
PagesConnectComponent, PagesConnectComponent,
PagesMonitorComponent, PagesMonitorComponent,
PagesReplayComponent, JsonComponent, PagesReplayComponent,
PagesNotFoundComponent, PagesNotFoundComponent,
PagesLoginComponent, PagesLoginComponent,
PagesMonitorLinuxComponent, PagesMonitorLinuxComponent,
PagesMonitorWindowsComponent, PagesMonitorWindowsComponent,
ReplayGuacamoleComponent
]; ];
<app-replay-json [replay]="replay" *ngIf="replay.type=='json'"></app-replay-json> <elements-replay-json [replay]="replay" *ngIf="replay.type=='json'"></elements-replay-json>
<app-replay-guacamole [replay]="replay" *ngIf="replay.type=='guacamole'"></app-replay-guacamole> <elements-replay-guacamole [replay]="replay" *ngIf="replay.type=='guacamole'"></elements-replay-guacamole>
import {Component, OnInit} from '@angular/core'; import {Component, OnInit} from '@angular/core';
import {ActivatedRoute} from '@angular/router'; import {ActivatedRoute} from '@angular/router';
import {HttpService, LogService} from '@app/services'; import {HttpService, LogService} from '@app/services';
import {Replay} from './replay.model'; import {Replay} from '@app/model';
@Component({ @Component({
selector: 'pages-replay', selector: 'pages-replay',
......
export class Replay {
id: string;
src: string;
type: string;
status: string;
timelist: Array<number>;
totalTime: number;
json: any;
height: number;
width: number;
}
import {NgModule} from '@angular/core'; import {NgModule} from '@angular/core';
import {RouterModule, Routes} from '@angular/router'; import {RouterModule, Routes} from '@angular/router';
import {PagesBlankComponent} from '../pages/blank/blank.component'; import {PagesBlankComponent} from './pages/blank/blank.component';
import {PagesConnectComponent} from '../pages/connect/connect.component'; import {PagesConnectComponent} from './pages/connect/connect.component';
import {PagesReplayComponent} from '../pages/replay/replay.component'; import {PagesReplayComponent} from './pages/replay/replay.component';
import {PageMainComponent} from '../pages/main/main.component'; import {PageMainComponent} from './pages/main/main.component';
import {PagesMonitorComponent} from '../pages/monitor/monitor.component'; import {PagesMonitorComponent} from './pages/monitor/monitor.component';
import {ElementSftpComponent} from '../elements/sftp/sftp.component'; import {ElementSftpComponent} from './elements/sftp/sftp.component';
const appRoutes: Routes = [ const appRoutes: Routes = [
......
...@@ -49,29 +49,29 @@ export class HttpService { ...@@ -49,29 +49,29 @@ export class HttpService {
} }
getUserProfile() { getUserProfile() {
return this.http.get<_User>('/api/users/v1/profile/'); return this.http.get<_User>('/api/v1/users/profile/');
} }
getMyGrantedAssets(keyword) { getMyGrantedAssets(keyword) {
const url = `/api/perms/v1/users/assets/tree/?search=${keyword}`; const url = `/api/v1/perms/users/assets/tree/?search=${keyword}`;
return this.http.get<Array<TreeNode>>(url); return this.http.get<Array<TreeNode>>(url);
} }
filterMyGrantedAssetsById(id: string) { filterMyGrantedAssetsById(id: string) {
const url = `/api/perms/v1/users/assets/tree/?id=${id}`; const url = `/api/v1/perms/users/assets/tree/?id=${id}`;
return this.http.get<Array<TreeNode>>(url); return this.http.get<Array<TreeNode>>(url);
} }
getMyGrantedNodes(async: boolean, refresh?: boolean) { getMyGrantedNodes(async: boolean, refresh?: boolean) {
const cachePolicy = refresh ? '2' : '1'; const cachePolicy = refresh ? '2' : '1';
const syncUrl = `/api/perms/v1/users/nodes-with-assets/tree/?cache_policy=${cachePolicy}`; const syncUrl = `/api/v1/perms/users/nodes-with-assets/tree/?cache_policy=${cachePolicy}`;
const asyncUrl = `/api/perms/v1/users/nodes/children-with-assets/tree/?cache_policy=${cachePolicy}`; const asyncUrl = `/api/v1/perms/users/nodes/children-with-assets/tree/?cache_policy=${cachePolicy}`;
const url = async ? asyncUrl : syncUrl; const url = async ? asyncUrl : syncUrl;
return this.http.get<Array<TreeNode>>(url); return this.http.get<Array<TreeNode>>(url);
} }
getMyGrantedRemoteApps(id?: string) { getMyGrantedRemoteApps(id?: string) {
let url = '/api/perms/v1/user/remote-apps/tree/'; let url = '/api/v1/perms/user/remote-apps/tree/';
if (id) { if (id) {
url += `?id=${id}&only=1`; url += `?id=${id}&only=1`;
} }
...@@ -189,7 +189,7 @@ export class HttpService { ...@@ -189,7 +189,7 @@ export class HttpService {
} }
getReplay(token: string) { getReplay(token: string) {
return this.http.get('/api/terminal/v1/sessions/' + token + '/replay'); return this.http.get('/api/v1/terminal/sessions/' + token + '/replay');
} }
// get_replay_json(token: string) { // get_replay_json(token: string) {
...@@ -204,7 +204,7 @@ export class HttpService { ...@@ -204,7 +204,7 @@ export class HttpService {
const params = new HttpParams() const params = new HttpParams()
.set('user-only', '1') .set('user-only', '1')
.set('token', token); .set('token', token);
return this.http.get('/api/users/v1/connection-token/', {params: params}); return this.http.get('/api/v1/users/connection-token/', {params: params});
} }
} }
...@@ -9,9 +9,8 @@ ...@@ -9,9 +9,8 @@
<link rel="icon" type="image/x-icon" href="favicon.ico"> <link rel="icon" type="image/x-icon" href="favicon.ico">
</head> </head>
<body> <body>
<app-root>Loading...</app-root> <app-root>加载中...</app-root>
<span id="marker" style="display: none;font-size: 14px">marker</span> <span id="marker" style="display: none;font-size: 14px">marker</span>
</body> </body>
<script> <script>
window.onload = function (ev) { window.onload = function (ev) {
...@@ -21,15 +20,15 @@ ...@@ -21,15 +20,15 @@
} }
if (navigator.clipboard && navigator.clipboard.readText) { if (navigator.clipboard && navigator.clipboard.readText) {
navigator.clipboard.readText().then(function textRead(text) { navigator.clipboard.readText().then(function textRead(text) {
clipboardData = text; clipboardData = text;
}); });
} }
if (navigator.clipboard && navigator.clipboard.writeText) { if (navigator.clipboard && navigator.clipboard.writeText) {
navigator.clipboard.writeText(clipboardData) navigator.clipboard.writeText(clipboardData)
} }
} }
</script> </script>
</html> </html>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment