]> git.proxmox.com Git - ceph.git/blob - ceph/src/pybind/mgr/dashboard/frontend/src/app/ceph/block/mirroring/overview/overview.component.ts
3ee1fa81334285d4ee56b38533e4bf9662bf5d9e
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / ceph / block / mirroring / overview / overview.component.ts
1 import { Component, OnDestroy, OnInit } from '@angular/core';
2 import { FormControl } from '@angular/forms';
3
4 import { NgbModalRef } from '@ng-bootstrap/ng-bootstrap';
5 import { Subscription } from 'rxjs';
6
7 import { Pool } from '~/app/ceph/pool/pool';
8 import { RbdMirroringService } from '~/app/shared/api/rbd-mirroring.service';
9 import { Icons } from '~/app/shared/enum/icons.enum';
10 import { ViewCacheStatus } from '~/app/shared/enum/view-cache-status.enum';
11 import { CdFormGroup } from '~/app/shared/forms/cd-form-group';
12 import { CdTableAction } from '~/app/shared/models/cd-table-action';
13 import { CdTableSelection } from '~/app/shared/models/cd-table-selection';
14 import { FinishedTask } from '~/app/shared/models/finished-task';
15 import { Permission } from '~/app/shared/models/permissions';
16 import { AuthStorageService } from '~/app/shared/services/auth-storage.service';
17 import { ModalService } from '~/app/shared/services/modal.service';
18 import { TaskWrapperService } from '~/app/shared/services/task-wrapper.service';
19 import { BootstrapCreateModalComponent } from '../bootstrap-create-modal/bootstrap-create-modal.component';
20 import { BootstrapImportModalComponent } from '../bootstrap-import-modal/bootstrap-import-modal.component';
21
22 @Component({
23 selector: 'cd-mirroring',
24 templateUrl: './overview.component.html',
25 styleUrls: ['./overview.component.scss']
26 })
27 export class OverviewComponent implements OnInit, OnDestroy {
28 rbdmirroringForm: CdFormGroup;
29 permission: Permission;
30 tableActions: CdTableAction[];
31 selection = new CdTableSelection();
32 modalRef: NgbModalRef;
33 peersExist = true;
34 siteName: any;
35 status: ViewCacheStatus;
36 private subs = new Subscription();
37 editing = false;
38
39 icons = Icons;
40
41 constructor(
42 private authStorageService: AuthStorageService,
43 private rbdMirroringService: RbdMirroringService,
44 private modalService: ModalService,
45 private taskWrapper: TaskWrapperService
46 ) {
47 this.permission = this.authStorageService.getPermissions().rbdMirroring;
48
49 const createBootstrapAction: CdTableAction = {
50 permission: 'update',
51 icon: Icons.upload,
52 click: () => this.createBootstrapModal(),
53 name: $localize`Create Bootstrap Token`,
54 canBePrimary: () => true,
55 disable: () => false
56 };
57 const importBootstrapAction: CdTableAction = {
58 permission: 'update',
59 icon: Icons.download,
60 click: () => this.importBootstrapModal(),
61 name: $localize`Import Bootstrap Token`,
62 disable: () => this.peersExist
63 };
64 this.tableActions = [createBootstrapAction, importBootstrapAction];
65 }
66
67 ngOnInit() {
68 this.createForm();
69 this.subs.add(this.rbdMirroringService.startPolling());
70 this.subs.add(
71 this.rbdMirroringService.subscribeSummary((data) => {
72 this.status = data.content_data.status;
73
74 this.peersExist = !!data.content_data.pools.find((o: Pool) => o['peer_uuids'].length > 0);
75 })
76 );
77 this.rbdMirroringService.getSiteName().subscribe((response: any) => {
78 this.siteName = response.site_name;
79 this.rbdmirroringForm.get('siteName').setValue(this.siteName);
80 });
81 }
82
83 private createForm() {
84 this.rbdmirroringForm = new CdFormGroup({
85 siteName: new FormControl({ value: '', disabled: true })
86 });
87 }
88
89 ngOnDestroy(): void {
90 this.subs.unsubscribe();
91 }
92
93 updateSiteName() {
94 if (this.editing) {
95 const action = this.taskWrapper.wrapTaskAroundCall({
96 task: new FinishedTask('rbd/mirroring/site_name/edit', {}),
97 call: this.rbdMirroringService.setSiteName(this.rbdmirroringForm.getValue('siteName'))
98 });
99
100 action.subscribe({
101 complete: () => {
102 this.rbdMirroringService.refresh();
103 }
104 });
105 }
106 this.editing = !this.editing;
107 }
108
109 createBootstrapModal() {
110 const initialState = {
111 siteName: this.siteName
112 };
113 this.modalRef = this.modalService.show(BootstrapCreateModalComponent, initialState);
114 }
115
116 importBootstrapModal() {
117 const initialState = {
118 siteName: this.siteName
119 };
120 this.modalRef = this.modalService.show(BootstrapImportModalComponent, initialState);
121 }
122 }