Compare commits

..

2 Commits

Author SHA1 Message Date
Tom
0987affccc Removed useless comments from policy table 2024-10-31 19:25:25 +00:00
Tom
44df0daddf Fixed several issues with policy and logins 2024-10-31 18:49:52 +00:00
5 changed files with 33 additions and 34 deletions

View File

@ -9,7 +9,7 @@
<mat-label>User to impersonate</mat-label>
<mat-select (selectionChange)="onChange($event)" [(value)]="impersonated">
<mat-option>{{getUsername()}}</mat-option>
@for (user of users; track user) {
@for (user of users; track user.id) {
<mat-option [value]="user.id">{{ user.name }}</mat-option>
}
</mat-select>

View File

@ -36,7 +36,7 @@ export class ImpersonationComponent implements OnInit {
}).subscribe((data: any) => {
this.users = data.filter((d: any) => d.name != this.auth.getUsername());
const id = this.auth.getImpersonatedId();
if (this.users.find(u => u.id == id)) {
if (id && this.users.find(u => u.id == id)) {
this.impersonated = id;
}
});

View File

@ -1,9 +1,4 @@
<table mat-table [dataSource]="policies" class="mat-elevation-z8">
<!--- Note that these columns can be defined in any order.
The actual rendered columns are set as a property on the row definition" -->
<!-- Position Column -->
<ng-container matColumnDef="path">
<th mat-header-cell *matHeaderCellDef>Path</th>
<td mat-cell *matCellDef="let policy">
@ -17,13 +12,12 @@
@if (policy.editing) {
<input type="text" [(ngModel)]="policy.temp_group_name" />
}
@if (!policy.editing) {
@if (!policy.editing && groups[policy.group_id]) {
{{groups[policy.group_id].name}}
}
</td>
</ng-container>
<!-- Name Column -->
<ng-container matColumnDef="usage">
<th mat-header-cell *matHeaderCellDef>Usage per span</th>
<td mat-cell *matCellDef="let policy">
@ -36,7 +30,6 @@
</td>
</ng-container>
<!-- Weight Column -->
<ng-container matColumnDef="span">
<th mat-header-cell *matHeaderCellDef>Span (ms)</th>
<td mat-cell *matCellDef="let policy">
@ -49,7 +42,6 @@
</td>
</ng-container>
<!-- Symbol Column -->
<ng-container matColumnDef="actions">
<th mat-header-cell *matHeaderCellDef> Actions </th>
<td mat-cell *matCellDef="let policy">

View File

@ -1,4 +1,4 @@
import { Component, ElementRef, Input, OnDestroy, OnInit, ViewChild } from '@angular/core';
import { Component, ElementRef, Input, isDevMode, OnDestroy, OnInit, ViewChild } from '@angular/core';
import { MatTable, MatTableModule } from '@angular/material/table';
import { MatIconModule } from '@angular/material/icon';
import EventService from '../shared/services/EventService';
@ -44,6 +44,8 @@ export class PolicyTableComponent implements OnInit, OnDestroy {
for (let policy of response.data) {
this.policies.push(new Policy(policy.id, policy.group_id, policy.path, policy.usage, policy.span, "", false, false));
}
if (isDevMode())
console.log('policies', this.policies);
this.table.renderRows();
} else if (response.request.type == "create_policy") {
console.log("create policy", response);
@ -83,6 +85,7 @@ export class PolicyTableComponent implements OnInit, OnDestroy {
}
} else if (response.request.type == "get_permissions") {
this.groups = Object.assign({}, ...response.data.groups.map((g: any) => ({ [g.id]: g })));
console.log('groups', response.data)
}
});
this.hermes.fetchPolicies();
@ -98,13 +101,21 @@ export class PolicyTableComponent implements OnInit, OnDestroy {
if (!policy.editing)
return;
policy.path = policy.old_path ?? '';
policy.usage = policy.old_usage ?? 1;
policy.span = policy.old_span ?? 5000;
policy.old_path = undefined;
policy.old_span = undefined;
policy.old_usage = undefined;
policy.editing = false;
if (policy.isNew) {
const index = this.policies.indexOf(policy);
if (index >= 0) {
this.policies.splice(index, 1);
this.table.renderRows();
}
} else {
policy.path = policy.old_path ?? '';
policy.usage = policy.old_usage ?? 1;
policy.span = policy.old_span ?? 5000;
policy.old_path = undefined;
policy.old_span = undefined;
policy.old_usage = undefined;
policy.editing = false;
}
}
delete(policy: Policy) {
@ -124,12 +135,20 @@ export class PolicyTableComponent implements OnInit, OnDestroy {
console.log('group must be valid.');
return;
}
const group = Object.values(this.groups).find(g => g.name);
const group = Object.values(this.groups).find(g => g.name == policy.temp_group_name);
if (group == null) {
console.log('group does not exist.');
return;
}
if (policy.isNew) {
const match = this.policies.find(p => p.group_id == group.id && p.path == policy.path);
if (match) {
console.log('policy already exists');
return;
}
}
if (isNaN(policy.usage)) {
console.log('usage must be a whole number.');
return;
@ -156,18 +175,6 @@ export class PolicyTableComponent implements OnInit, OnDestroy {
return;
}
let group_id = policy?.group_id;
for (let groupId in this.groups) {
if (this.groups[groupId].name == policy?.temp_group_name) {
group_id = groupId;
break;
}
}
if (policy?.temp_group_name != this.groups[group_id].name) {
console.log('no group found.');
return;
}
if (policy.isNew) {
this.hermes.createPolicy(group.id, policy.path, policy.usage, policy.span);
} else {

View File

@ -25,11 +25,11 @@ export class ApiAuthenticationService {
}
getImpersonatedId() {
return this.user.impersonation.id;
return this.user.impersonation?.id;
}
getUsername() {
return this.user.name;
return this.user?.name;
}
update() {