sets default admin creds in docker compose. first pass remote builder feature

This commit is contained in:
2026-07-04 18:40:29 +00:00
parent 78dde4fd0a
commit 7a04fa7c84
17 changed files with 1489 additions and 6 deletions
+209 -5
View File
@@ -4,12 +4,16 @@ import { FormsModule } from '@angular/forms';
import { BehaviorSubject, firstValueFrom } from 'rxjs';
import { Show } from '../interfaces/show';
import { Event } from '../interfaces/event';
import { Event as StationEvent } from '../interfaces/event';
import { StationConfig } from '../interfaces/station-config';
import { HistoryEntry } from '../interfaces/history-entry';
import { TeamMember } from '../interfaces/team-member';
import { CommunityHighlight } from '../interfaces/community-highlight';
import { Underwriter } from '../interfaces/underwriter';
import {
MobileBuildDefaults,
MobileBuildRequest,
} from '../interfaces/mobile-build';
import { ShowService } from '../services/show.service';
import { EventService } from '../services/event.service';
import { StationConfigService } from '../services/station-config.service';
@@ -18,6 +22,7 @@ import { HistoryEntryService } from '../services/history-entry.service';
import { TeamMemberService } from '../services/team-member.service';
import { CommunityHighlightService } from '../services/community-highlight.service';
import { UnderwriterService } from '../services/underwriter.service';
import { MobileBuildService } from '../services/mobile-build.service';
import { AdminShowFormComponent } from './admin-show-form.component';
import { AdminEventFormComponent } from './admin-event-form.component';
import { AdminStationFormComponent } from './admin-station-form.component';
@@ -38,8 +43,9 @@ import {
HarmonyRule,
ColorValidation,
} from '../utils/color-harmony';
import { getAppConfig } from '../services/app-config.service';
type TabKey = 'shows' | 'events' | 'station' | 'theme' | 'history' | 'team' | 'community' | 'underwriters' | 'stats';
type TabKey = 'shows' | 'events' | 'station' | 'theme' | 'history' | 'team' | 'community' | 'underwriters' | 'mobile-builds' | 'stats';
interface ThemeColorState {
color_primary: string;
@@ -90,12 +96,13 @@ export class AdminComponent implements OnInit {
private teamMemberService = inject(TeamMemberService);
private communityHighlightService = inject(CommunityHighlightService);
private underwriterService = inject(UnderwriterService);
private mobileBuildService = inject(MobileBuildService);
activeTab = signal<TabKey>('shows');
/** Item currently being edited (set by editXxx, cleared on save/close). */
editingShow: Show | null = null;
editingEvent: Event | null = null;
editingEvent: StationEvent | null = null;
editingHistory: HistoryEntry | null = null;
editingTeam: TeamMember | null = null;
editingCommunity: CommunityHighlight | null = null;
@@ -103,12 +110,34 @@ export class AdminComponent implements OnInit {
/** BehaviorSubjects guarantee change detection via the async pipe — start empty, populated on load. */
readonly shows$ = new BehaviorSubject<Show[]>([]);
readonly events$ = new BehaviorSubject<Event[]>([]);
readonly events$ = new BehaviorSubject<StationEvent[]>([]);
readonly stationConfig$ = new BehaviorSubject<StationConfig | null>(null);
readonly historyEntries$ = new BehaviorSubject<HistoryEntry[]>([]);
readonly teamMembers$ = new BehaviorSubject<TeamMember[]>([]);
readonly communityHighlights$ = new BehaviorSubject<CommunityHighlight[]>([]);
readonly underwriters$ = new BehaviorSubject<Underwriter[]>([]);
readonly mobileBuilds$ = new BehaviorSubject<MobileBuildRequest[]>([]);
mobileBuildDefaults: MobileBuildDefaults | null = null;
selectedMobileBuildId: number | null = null;
selectedMobileBuild: MobileBuildRequest | null = null;
mobileBuildStatusMessage = '';
mobileBuildErrorMessage = '';
mobileBuildPreflightIssues: string[] = [];
mobileBuildBusy = false;
buildAndroid = true;
buildIos = true;
androidApplicationId = '';
iosBundleId = '';
buildVersionName = '1.0.0';
buildNumber = '1';
buildReleaseProfile = 'release';
androidKeystoreFile: File | null = null;
androidDescriptorFile: File | null = null;
iosCertificateFile: File | null = null;
iosProfileFile: File | null = null;
// ── Theme tab state ──────────────────────────────────────────
@@ -209,9 +238,184 @@ export class AdminComponent implements OnInit {
this.reloadTeamMembers(),
this.reloadCommunityHighlights(),
this.reloadUnderwriters(),
this.reloadMobileBuildDefaults(),
this.reloadMobileBuilds(),
]);
}
async reloadMobileBuildDefaults(): Promise<void> {
try {
this.mobileBuildDefaults = await firstValueFrom(this.mobileBuildService.getDefaults());
} catch {
this.mobileBuildDefaults = null;
}
}
async reloadMobileBuilds(): Promise<void> {
const data = await firstValueFrom(this.mobileBuildService.listRequests());
this.mobileBuilds$.next(data);
if (this.selectedMobileBuildId !== null) {
const selected = data.find((item) => item.id === this.selectedMobileBuildId) ?? null;
this.selectedMobileBuild = selected;
if (!selected) {
this.selectedMobileBuildId = null;
}
}
}
onMobileBuildSelected(buildId: number): void {
this.selectedMobileBuildId = buildId;
const selected = this.mobileBuilds$.value.find((item) => item.id === buildId) ?? null;
this.selectedMobileBuild = selected;
this.mobileBuildPreflightIssues = selected?.preflight_report
? selected.preflight_report.split('\n').filter((line) => line.trim().length > 0)
: [];
}
onFileChosen(event: Event, target: 'android-keystore' | 'android-descriptor' | 'ios-certificate' | 'ios-profile'): void {
const input = event.target as HTMLInputElement;
const file = input.files && input.files.length > 0 ? input.files[0] : null;
if (target === 'android-keystore') this.androidKeystoreFile = file;
if (target === 'android-descriptor') this.androidDescriptorFile = file;
if (target === 'ios-certificate') this.iosCertificateFile = file;
if (target === 'ios-profile') this.iosProfileFile = file;
}
private getErrorMessage(err: unknown, fallback: string): string {
if (typeof err === 'object' && err !== null) {
const maybeErr = err as { error?: { detail?: string | string[]; message?: string }; message?: string };
const detail = maybeErr.error?.detail;
if (typeof detail === 'string') return detail;
if (Array.isArray(detail)) return detail.join(' | ');
if (typeof maybeErr.error?.message === 'string') return maybeErr.error.message;
if (typeof maybeErr.message === 'string') return maybeErr.message;
}
return fallback;
}
private resetMobileBuildMessages(): void {
this.mobileBuildStatusMessage = '';
this.mobileBuildErrorMessage = '';
}
private validateBuildInputs(): string | null {
if (!this.buildAndroid && !this.buildIos) {
return 'Select at least one platform.';
}
if (this.buildAndroid && !this.androidApplicationId.trim()) {
return 'Android application ID is required.';
}
if (this.buildIos && !this.iosBundleId.trim()) {
return 'iOS bundle ID is required.';
}
if (!this.buildVersionName.trim() || !this.buildNumber.trim()) {
return 'Version name and build number are required.';
}
if (this.buildAndroid && (!this.androidKeystoreFile || !this.androidDescriptorFile)) {
return 'Android requires both keystore and descriptor files.';
}
if (this.buildIos && (!this.iosCertificateFile || !this.iosProfileFile)) {
return 'iOS requires both certificate and provisioning profile files.';
}
return null;
}
async createAndUploadMobileBuildRequest(): Promise<void> {
this.resetMobileBuildMessages();
this.mobileBuildPreflightIssues = [];
const inputError = this.validateBuildInputs();
if (inputError) {
this.mobileBuildErrorMessage = inputError;
return;
}
this.mobileBuildBusy = true;
try {
const request = await firstValueFrom(this.mobileBuildService.createRequest({
platform_android: this.buildAndroid,
platform_ios: this.buildIos,
android_application_id: this.androidApplicationId.trim() || undefined,
ios_bundle_id: this.iosBundleId.trim() || undefined,
version_name: this.buildVersionName.trim(),
build_number: this.buildNumber.trim(),
release_profile: this.buildReleaseProfile.trim() || 'release',
}));
if (this.buildAndroid && this.androidKeystoreFile && this.androidDescriptorFile) {
await firstValueFrom(this.mobileBuildService.uploadFile(request.id, 'android', 'keystore', this.androidKeystoreFile));
await firstValueFrom(this.mobileBuildService.uploadFile(request.id, 'android', 'descriptor', this.androidDescriptorFile));
}
if (this.buildIos && this.iosCertificateFile && this.iosProfileFile) {
await firstValueFrom(this.mobileBuildService.uploadFile(request.id, 'ios', 'certificate', this.iosCertificateFile));
await firstValueFrom(this.mobileBuildService.uploadFile(request.id, 'ios', 'profile', this.iosProfileFile));
}
this.mobileBuildStatusMessage = `Draft build request #${request.id} created and files uploaded.`;
await this.reloadMobileBuilds();
this.onMobileBuildSelected(request.id);
} catch (err) {
this.mobileBuildErrorMessage = this.getErrorMessage(err, 'Failed to create build request.');
} finally {
this.mobileBuildBusy = false;
}
}
async runPreflightForSelectedBuild(): Promise<void> {
if (!this.selectedMobileBuildId) return;
this.resetMobileBuildMessages();
this.mobileBuildBusy = true;
try {
const result = await firstValueFrom(this.mobileBuildService.preflight(this.selectedMobileBuildId));
this.mobileBuildPreflightIssues = result.issues;
this.mobileBuildStatusMessage = result.passed
? 'Preflight passed. Build can be triggered.'
: 'Preflight failed. Resolve the listed issues.';
await this.reloadMobileBuilds();
this.onMobileBuildSelected(this.selectedMobileBuildId);
} catch (err) {
this.mobileBuildErrorMessage = this.getErrorMessage(err, 'Preflight failed to run.');
} finally {
this.mobileBuildBusy = false;
}
}
async triggerSelectedBuild(): Promise<void> {
if (!this.selectedMobileBuildId) return;
this.resetMobileBuildMessages();
this.mobileBuildBusy = true;
try {
const request = await firstValueFrom(this.mobileBuildService.trigger(this.selectedMobileBuildId));
this.mobileBuildStatusMessage = `Build #${request.id} queued.`;
await this.reloadMobileBuilds();
this.onMobileBuildSelected(this.selectedMobileBuildId);
} catch (err) {
this.mobileBuildErrorMessage = this.getErrorMessage(err, 'Failed to trigger build.');
} finally {
this.mobileBuildBusy = false;
}
}
async refreshSelectedBuild(): Promise<void> {
if (!this.selectedMobileBuildId) return;
await this.reloadMobileBuilds();
this.onMobileBuildSelected(this.selectedMobileBuildId);
}
getArtifactDownloadHref(path: string): string {
return `${getAppConfig().apiBaseUrl}${path}`;
}
// ── Show CRUD ───────────────────────────────────────────
openShowForm(): void {
@@ -248,7 +452,7 @@ export class AdminComponent implements OnInit {
this.showEventForm = true;
}
editEvent(event: Event): void {
editEvent(event: StationEvent): void {
this.editingEvent = event;
this.showEventForm = true;
}