mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-05-23 12:58:18 -05:00
Use password and select config fields
This commit is contained in:
parent
6a10f9bc45
commit
2b608f19e4
@ -35,6 +35,7 @@
|
|||||||
@case (ConfigOptionType.String) { <pngx-input-text [formControlName]="option.key" [error]="errors[option.key]"></pngx-input-text> }
|
@case (ConfigOptionType.String) { <pngx-input-text [formControlName]="option.key" [error]="errors[option.key]"></pngx-input-text> }
|
||||||
@case (ConfigOptionType.JSON) { <pngx-input-text [formControlName]="option.key" [error]="errors[option.key]"></pngx-input-text> }
|
@case (ConfigOptionType.JSON) { <pngx-input-text [formControlName]="option.key" [error]="errors[option.key]"></pngx-input-text> }
|
||||||
@case (ConfigOptionType.File) { <pngx-input-file [formControlName]="option.key" (upload)="uploadFile($event, option.key)" [error]="errors[option.key]"></pngx-input-file> }
|
@case (ConfigOptionType.File) { <pngx-input-file [formControlName]="option.key" (upload)="uploadFile($event, option.key)" [error]="errors[option.key]"></pngx-input-file> }
|
||||||
|
@case (ConfigOptionType.Password) { <pngx-input-password [formControlName]="option.key" [error]="errors[option.key]"></pngx-input-password> }
|
||||||
}
|
}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -29,6 +29,7 @@ import { SettingsService } from 'src/app/services/settings.service'
|
|||||||
import { ToastService } from 'src/app/services/toast.service'
|
import { ToastService } from 'src/app/services/toast.service'
|
||||||
import { FileComponent } from '../../common/input/file/file.component'
|
import { FileComponent } from '../../common/input/file/file.component'
|
||||||
import { NumberComponent } from '../../common/input/number/number.component'
|
import { NumberComponent } from '../../common/input/number/number.component'
|
||||||
|
import { PasswordComponent } from '../../common/input/password/password.component'
|
||||||
import { SelectComponent } from '../../common/input/select/select.component'
|
import { SelectComponent } from '../../common/input/select/select.component'
|
||||||
import { SwitchComponent } from '../../common/input/switch/switch.component'
|
import { SwitchComponent } from '../../common/input/switch/switch.component'
|
||||||
import { TextComponent } from '../../common/input/text/text.component'
|
import { TextComponent } from '../../common/input/text/text.component'
|
||||||
@ -46,6 +47,7 @@ import { LoadingComponentWithPermissions } from '../../loading-component/loading
|
|||||||
TextComponent,
|
TextComponent,
|
||||||
NumberComponent,
|
NumberComponent,
|
||||||
FileComponent,
|
FileComponent,
|
||||||
|
PasswordComponent,
|
||||||
AsyncPipe,
|
AsyncPipe,
|
||||||
NgbNavModule,
|
NgbNavModule,
|
||||||
FormsModule,
|
FormsModule,
|
||||||
|
@ -1,17 +1,24 @@
|
|||||||
<div class="mb-3">
|
<div class="mb-3" [class.pb-3]="error">
|
||||||
<label class="form-label" [for]="inputId">{{title}}</label>
|
<div class="row">
|
||||||
<div class="input-group" [class.is-invalid]="error">
|
<div class="d-flex align-items-center position-relative hidden-button-container" [class.col-md-3]="horizontal">
|
||||||
<input #inputField [type]="showReveal && textVisible ? 'text' : 'password'" class="form-control" [class.is-invalid]="error" [id]="inputId" [(ngModel)]="value" (focus)="onFocus()" (focusout)="onFocusOut()" (change)="onChange(value)" [disabled]="disabled" [autocomplete]="autocomplete">
|
@if (title) {
|
||||||
@if (showReveal) {
|
<label class="form-label" [class.mb-md-0]="horizontal" [for]="inputId">{{title}}</label>
|
||||||
<button type="button" class="btn btn-outline-secondary" (click)="toggleVisibility()" i18n-title title="Show password" [disabled]="disabled || disableRevealToggle">
|
}
|
||||||
<i-bs name="eye"></i-bs>
|
</div>
|
||||||
</button>
|
<div class="position-relative" [class.col-md-9]="horizontal">
|
||||||
|
<div class="input-group" [class.is-invalid]="error">
|
||||||
|
<input #inputField [type]="showReveal && textVisible ? 'text' : 'password'" class="form-control" [class.is-invalid]="error" [id]="inputId" [(ngModel)]="value" (focus)="onFocus()" (focusout)="onFocusOut()" (change)="onChange(value)" [disabled]="disabled" [autocomplete]="autocomplete">
|
||||||
|
@if (showReveal) {
|
||||||
|
<button type="button" class="btn btn-outline-secondary" (click)="toggleVisibility()" i18n-title title="Show password" [disabled]="disabled || disableRevealToggle">
|
||||||
|
<i-bs name="eye"></i-bs>
|
||||||
|
</button>
|
||||||
|
}
|
||||||
|
</div>
|
||||||
|
<div class="invalid-feedback">
|
||||||
|
{{error}}
|
||||||
|
</div>
|
||||||
|
@if (hint) {
|
||||||
|
<small class="form-text text-muted" [innerHTML]="hint | safeHtml"></small>
|
||||||
}
|
}
|
||||||
</div>
|
</div>
|
||||||
<div class="invalid-feedback">
|
|
||||||
{{error}}
|
|
||||||
</div>
|
|
||||||
@if (hint) {
|
|
||||||
<small class="form-text text-muted" [innerHTML]="hint | safeHtml"></small>
|
|
||||||
}
|
|
||||||
</div>
|
</div>
|
||||||
|
@ -44,6 +44,7 @@ export enum ConfigOptionType {
|
|||||||
Boolean = 'boolean',
|
Boolean = 'boolean',
|
||||||
JSON = 'json',
|
JSON = 'json',
|
||||||
File = 'file',
|
File = 'file',
|
||||||
|
Password = 'password',
|
||||||
}
|
}
|
||||||
|
|
||||||
export const ConfigCategory = {
|
export const ConfigCategory = {
|
||||||
@ -53,6 +54,11 @@ export const ConfigCategory = {
|
|||||||
AI: $localize`AI Settings`,
|
AI: $localize`AI Settings`,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export const LLMBackendConfig = {
|
||||||
|
OPENAI: 'openai',
|
||||||
|
OLLAMA: 'ollama',
|
||||||
|
}
|
||||||
|
|
||||||
export interface ConfigOption {
|
export interface ConfigOption {
|
||||||
key: string
|
key: string
|
||||||
title: string
|
title: string
|
||||||
@ -267,7 +273,8 @@ export const PaperlessConfigOptions: ConfigOption[] = [
|
|||||||
{
|
{
|
||||||
key: 'llm_backend',
|
key: 'llm_backend',
|
||||||
title: $localize`LLM Backend`,
|
title: $localize`LLM Backend`,
|
||||||
type: ConfigOptionType.String,
|
type: ConfigOptionType.Select,
|
||||||
|
choices: mapToItems(LLMBackendConfig),
|
||||||
config_key: 'PAPERLESS_LLM_BACKEND',
|
config_key: 'PAPERLESS_LLM_BACKEND',
|
||||||
category: ConfigCategory.AI,
|
category: ConfigCategory.AI,
|
||||||
},
|
},
|
||||||
@ -281,7 +288,7 @@ export const PaperlessConfigOptions: ConfigOption[] = [
|
|||||||
{
|
{
|
||||||
key: 'llm_api_key',
|
key: 'llm_api_key',
|
||||||
title: $localize`LLM API Key`,
|
title: $localize`LLM API Key`,
|
||||||
type: ConfigOptionType.String,
|
type: ConfigOptionType.Password,
|
||||||
config_key: 'PAPERLESS_LLM_API_KEY',
|
config_key: 'PAPERLESS_LLM_API_KEY',
|
||||||
category: ConfigCategory.AI,
|
category: ConfigCategory.AI,
|
||||||
},
|
},
|
||||||
|
@ -190,6 +190,10 @@ class ProfileSerializer(serializers.ModelSerializer):
|
|||||||
class ApplicationConfigurationSerializer(serializers.ModelSerializer):
|
class ApplicationConfigurationSerializer(serializers.ModelSerializer):
|
||||||
user_args = serializers.JSONField(binary=True, allow_null=True)
|
user_args = serializers.JSONField(binary=True, allow_null=True)
|
||||||
barcode_tag_mapping = serializers.JSONField(binary=True, allow_null=True)
|
barcode_tag_mapping = serializers.JSONField(binary=True, allow_null=True)
|
||||||
|
llm_api_key = ObfuscatedPasswordField(
|
||||||
|
required=False,
|
||||||
|
allow_null=True,
|
||||||
|
)
|
||||||
|
|
||||||
def run_validation(self, data):
|
def run_validation(self, data):
|
||||||
# Empty strings treated as None to avoid unexpected behavior
|
# Empty strings treated as None to avoid unexpected behavior
|
||||||
|
Loading…
x
Reference in New Issue
Block a user