123 lines
		
	
	
		
			5.3 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			123 lines
		
	
	
		
			5.3 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import { gettext } from "django";
 | 
						|
import { customElement, property } from "lit-element";
 | 
						|
import { html, TemplateResult } from "lit-html";
 | 
						|
import { AKResponse } from "../../api/Client";
 | 
						|
import { Outpost } from "../../api/Outposts";
 | 
						|
import { TableColumn } from "../../elements/table/Table";
 | 
						|
import { TablePage } from "../../elements/table/TablePage";
 | 
						|
 | 
						|
import "./OutpostHealth";
 | 
						|
import "../../elements/buttons/SpinnerButton";
 | 
						|
import "../../elements/buttons/ModalButton";
 | 
						|
import "../../elements/buttons/TokenCopyButton";
 | 
						|
 | 
						|
@customElement("ak-outpost-list")
 | 
						|
export class OutpostListPage extends TablePage<Outpost> {
 | 
						|
    pageTitle(): string {
 | 
						|
        return "Outposts";
 | 
						|
    }
 | 
						|
    pageDescription(): string | undefined {
 | 
						|
        return "Outposts are deployments of authentik components to support different environments and protocols, like reverse proxies.";
 | 
						|
    }
 | 
						|
    pageIcon(): string {
 | 
						|
        return "pf-icon pf-icon-zone";
 | 
						|
    }
 | 
						|
    searchEnabled(): boolean {
 | 
						|
        return true;
 | 
						|
    }
 | 
						|
    apiEndpoint(page: number): Promise<AKResponse<Outpost>> {
 | 
						|
        return Outpost.list({
 | 
						|
            ordering: this.order,
 | 
						|
            page: page,
 | 
						|
            search: this.search || "",
 | 
						|
        });
 | 
						|
    }
 | 
						|
    columns(): TableColumn[] {
 | 
						|
        return [
 | 
						|
            new TableColumn("Name", "name"),
 | 
						|
            new TableColumn("Providers"),
 | 
						|
            new TableColumn("Health and Version"),
 | 
						|
            new TableColumn(""),
 | 
						|
        ];
 | 
						|
    }
 | 
						|
 | 
						|
    @property()
 | 
						|
    order = "name";
 | 
						|
 | 
						|
    row(item: Outpost): TemplateResult[] {
 | 
						|
        return [
 | 
						|
            html`${item.name}`,
 | 
						|
            html`<ul>${item.providers_obj.map((p) => {
 | 
						|
                return html`<li><a href="#/providers/${p.pk}">${p.name}</a></li>`;
 | 
						|
            })}</ul>`,
 | 
						|
            html`<ak-outpost-health outpostId=${item.pk}></ak-outpost-health>`,
 | 
						|
            html`
 | 
						|
            <ak-modal-button href="${Outpost.adminUrl(`${item.pk}/update/`)}">
 | 
						|
                <ak-spinner-button slot="trigger" class="pf-m-secondary">
 | 
						|
                    ${gettext("Edit")}
 | 
						|
                </ak-spinner-button>
 | 
						|
                <div slot="modal"></div>
 | 
						|
            </ak-modal-button> 
 | 
						|
            <ak-modal-button href="${Outpost.adminUrl(`${item.pk}/delete/`)}">
 | 
						|
                <ak-spinner-button slot="trigger" class="pf-m-danger">
 | 
						|
                    ${gettext("Delete")}
 | 
						|
                </ak-spinner-button>
 | 
						|
                <div slot="modal"></div>
 | 
						|
            </ak-modal-button> 
 | 
						|
            <ak-modal-button>
 | 
						|
                <button slot="trigger" class="pf-c-button pf-m-tertiary">
 | 
						|
                    ${gettext("View Deployment Info")}
 | 
						|
                </button>
 | 
						|
                <div slot="modal">
 | 
						|
                    <div class="pf-c-modal-box__header">
 | 
						|
                        <h1 class="pf-c-title pf-m-2xl" id="modal-title">${gettext("Outpost Deployment Info")}</h1>
 | 
						|
                    </div>
 | 
						|
                    <div class="pf-c-modal-box__body" id="modal-description">
 | 
						|
                        <p><a href="https://goauthentik.io/docs/outposts/outposts/#deploy">${gettext("View deployment documentation")}</a></p>
 | 
						|
                        <form class="pf-c-form">
 | 
						|
                            <div class="pf-c-form__group">
 | 
						|
                                <label class="pf-c-form__label" for="help-text-simple-form-name">
 | 
						|
                                    <span class="pf-c-form__label-text">AUTHENTIK_HOST</span>
 | 
						|
                                </label>
 | 
						|
                                <input class="pf-c-form-control" readonly type="text" value="${document.location.toString()}" />
 | 
						|
                            </div>
 | 
						|
                            <div class="pf-c-form__group">
 | 
						|
                                <label class="pf-c-form__label" for="help-text-simple-form-name">
 | 
						|
                                    <span class="pf-c-form__label-text">AUTHENTIK_TOKEN</span>
 | 
						|
                                </label>
 | 
						|
                                <div>
 | 
						|
                                    <ak-token-copy-button identifier="${item.token_identifier}">
 | 
						|
                                        ${gettext("Click to copy token")}
 | 
						|
                                    </ak-token-copy-button>
 | 
						|
                                </div>
 | 
						|
                            </div>
 | 
						|
                            <h3>${gettext("If your authentik Instance is using a self-signed certificate, set this value.")}</h3>
 | 
						|
                            <div class="pf-c-form__group">
 | 
						|
                                <label class="pf-c-form__label" for="help-text-simple-form-name">
 | 
						|
                                    <span class="pf-c-form__label-text">AUTHENTIK_INSECURE</span>
 | 
						|
                                </label>
 | 
						|
                                <input class="pf-c-form-control" readonly type="text" value="true" />
 | 
						|
                            </div>
 | 
						|
                        </form>
 | 
						|
                    </div>
 | 
						|
                    <footer class="pf-c-modal-box__footer pf-m-align-left">
 | 
						|
                        <a class="pf-c-button pf-m-primary">${gettext("Close")}</a>
 | 
						|
                    </footer>
 | 
						|
                </div>
 | 
						|
            </ak-modal-button>`,
 | 
						|
        ];
 | 
						|
    }
 | 
						|
 | 
						|
    renderToolbar(): TemplateResult {
 | 
						|
        return html`
 | 
						|
        <ak-modal-button href=${Outpost.adminUrl("create/")}>
 | 
						|
            <ak-spinner-button slot="trigger" class="pf-m-primary">
 | 
						|
                ${gettext("Create")}
 | 
						|
            </ak-spinner-button>
 | 
						|
            <div slot="modal"></div>
 | 
						|
        </ak-modal-button>
 | 
						|
        ${super.renderToolbar()}
 | 
						|
        `;
 | 
						|
    }
 | 
						|
}
 |