mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
Properly get username & display name
This commit is contained in:
parent
96f86adfb8
commit
bcb9c6ccb0
@ -21,17 +21,17 @@
|
|||||||
</div>
|
</div>
|
||||||
<ul ngbNav class="order-sm-3">
|
<ul ngbNav class="order-sm-3">
|
||||||
<li ngbDropdown class="nav-item dropdown">
|
<li ngbDropdown class="nav-item dropdown">
|
||||||
<button class="btn text-light" id="userDropdown" ngbDropdownToggle>
|
<button class="btn" id="userDropdown" ngbDropdownToggle>
|
||||||
<span *ngIf="displayName" class="navbar-text small me-2 text-light d-none d-sm-inline">
|
<span class="small me-2 d-none d-sm-inline">
|
||||||
{{displayName}}
|
{{this.settingsService.displayName}}
|
||||||
</span>
|
</span>
|
||||||
<svg width="1.3em" height="1.3em" fill="currentColor">
|
<svg width="1.3em" height="1.3em" fill="currentColor">
|
||||||
<use xlink:href="assets/bootstrap-icons.svg#person-circle"/>
|
<use xlink:href="assets/bootstrap-icons.svg#person-circle"/>
|
||||||
</svg>
|
</svg>
|
||||||
</button>
|
</button>
|
||||||
<div ngbDropdownMenu class="dropdown-menu-end shadow me-2" aria-labelledby="userDropdown">
|
<div ngbDropdownMenu class="dropdown-menu-end shadow me-2" aria-labelledby="userDropdown">
|
||||||
<div *ngIf="displayName" class="d-sm-none">
|
<div class="d-sm-none">
|
||||||
<p class="small mb-0 px-3 text-muted" i18n>Logged in as {{displayName}}</p>
|
<p class="small mb-0 px-3 text-muted" i18n>Logged in as {{this.settingsService.displayName}}</p>
|
||||||
<div class="dropdown-divider"></div>
|
<div class="dropdown-divider"></div>
|
||||||
</div>
|
</div>
|
||||||
<a ngbDropdownItem class="nav-link" routerLink="settings" (click)="closeMenu()">
|
<a ngbDropdownItem class="nav-link" routerLink="settings" (click)="closeMenu()">
|
||||||
|
@ -23,6 +23,7 @@ import {
|
|||||||
AppRemoteVersion,
|
AppRemoteVersion,
|
||||||
} from 'src/app/services/rest/remote-version.service'
|
} from 'src/app/services/rest/remote-version.service'
|
||||||
import { QueryParamsService } from 'src/app/services/query-params.service'
|
import { QueryParamsService } from 'src/app/services/query-params.service'
|
||||||
|
import { SettingsService } from 'src/app/services/settings.service'
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-app-frame',
|
selector: 'app-app-frame',
|
||||||
@ -36,10 +37,9 @@ export class AppFrameComponent {
|
|||||||
private openDocumentsService: OpenDocumentsService,
|
private openDocumentsService: OpenDocumentsService,
|
||||||
private searchService: SearchService,
|
private searchService: SearchService,
|
||||||
public savedViewService: SavedViewService,
|
public savedViewService: SavedViewService,
|
||||||
private list: DocumentListViewService,
|
|
||||||
private meta: Meta,
|
|
||||||
private remoteVersionService: RemoteVersionService,
|
private remoteVersionService: RemoteVersionService,
|
||||||
private queryParamsService: QueryParamsService
|
private queryParamsService: QueryParamsService,
|
||||||
|
public settingsService: SettingsService
|
||||||
) {
|
) {
|
||||||
this.remoteVersionService
|
this.remoteVersionService
|
||||||
.checkForUpdates()
|
.checkForUpdates()
|
||||||
@ -143,17 +143,4 @@ export class AppFrameComponent {
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
get displayName() {
|
|
||||||
// TODO: taken from dashboard component, is this the best way to pass around username?
|
|
||||||
let tagFullName = this.meta.getTag('name=full_name')
|
|
||||||
let tagUsername = this.meta.getTag('name=username')
|
|
||||||
if (tagFullName && tagFullName.content) {
|
|
||||||
return tagFullName.content
|
|
||||||
} else if (tagUsername && tagUsername.content) {
|
|
||||||
return tagUsername.content
|
|
||||||
} else {
|
|
||||||
return null
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
import { Component, OnInit } from '@angular/core'
|
import { Component, OnInit } from '@angular/core'
|
||||||
import { Meta } from '@angular/platform-browser'
|
import { Meta } from '@angular/platform-browser'
|
||||||
import { SavedViewService } from 'src/app/services/rest/saved-view.service'
|
import { SavedViewService } from 'src/app/services/rest/saved-view.service'
|
||||||
|
import { SettingsService } from 'src/app/services/settings.service'
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-dashboard',
|
selector: 'app-dashboard',
|
||||||
@ -8,23 +9,14 @@ import { SavedViewService } from 'src/app/services/rest/saved-view.service'
|
|||||||
styleUrls: ['./dashboard.component.scss'],
|
styleUrls: ['./dashboard.component.scss'],
|
||||||
})
|
})
|
||||||
export class DashboardComponent {
|
export class DashboardComponent {
|
||||||
constructor(public savedViewService: SavedViewService, private meta: Meta) {}
|
constructor(
|
||||||
|
public savedViewService: SavedViewService,
|
||||||
get displayName() {
|
public settingsService: SettingsService
|
||||||
let tagFullName = this.meta.getTag('name=full_name')
|
) {}
|
||||||
let tagUsername = this.meta.getTag('name=username')
|
|
||||||
if (tagFullName && tagFullName.content) {
|
|
||||||
return tagFullName.content
|
|
||||||
} else if (tagUsername && tagUsername.content) {
|
|
||||||
return tagUsername.content
|
|
||||||
} else {
|
|
||||||
return null
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
get subtitle() {
|
get subtitle() {
|
||||||
if (this.displayName) {
|
if (this.settingsService.displayName) {
|
||||||
return $localize`Hello ${this.displayName}, welcome to Paperless-ngx!`
|
return $localize`Hello ${this.settingsService.displayName}, welcome to Paperless-ngx!`
|
||||||
} else {
|
} else {
|
||||||
return $localize`Welcome to Paperless-ngx!`
|
return $localize`Welcome to Paperless-ngx!`
|
||||||
}
|
}
|
||||||
|
@ -44,6 +44,8 @@ export class SettingsService {
|
|||||||
|
|
||||||
private settings: Object = {}
|
private settings: Object = {}
|
||||||
|
|
||||||
|
public displayName: string
|
||||||
|
|
||||||
constructor(
|
constructor(
|
||||||
rendererFactory: RendererFactory2,
|
rendererFactory: RendererFactory2,
|
||||||
@Inject(DOCUMENT) private document,
|
@Inject(DOCUMENT) private document,
|
||||||
@ -62,6 +64,7 @@ export class SettingsService {
|
|||||||
settings$.pipe(first()).subscribe((uisettings) => {
|
settings$.pipe(first()).subscribe((uisettings) => {
|
||||||
Object.assign(this.settings, uisettings.settings)
|
Object.assign(this.settings, uisettings.settings)
|
||||||
this.maybeMigrateSettings()
|
this.maybeMigrateSettings()
|
||||||
|
this.displayName = uisettings.display_name.trim()
|
||||||
})
|
})
|
||||||
return settings$
|
return settings$
|
||||||
}
|
}
|
||||||
|
@ -9,8 +9,6 @@
|
|||||||
<title>Paperless-ngx</title>
|
<title>Paperless-ngx</title>
|
||||||
<base href="{% url 'base' %}">
|
<base href="{% url 'base' %}">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<meta name="username" content="{{username}}">
|
|
||||||
<meta name="full_name" content="{{full_name}}">
|
|
||||||
<meta name="cookie_prefix" content="{{cookie_prefix}}">
|
<meta name="cookie_prefix" content="{{cookie_prefix}}">
|
||||||
<meta name="robots" content="noindex,nofollow">
|
<meta name="robots" content="noindex,nofollow">
|
||||||
<link rel="icon" type="image/x-icon" href="favicon.ico">
|
<link rel="icon" type="image/x-icon" href="favicon.ico">
|
||||||
|
@ -729,12 +729,17 @@ class UiSettingsView(GenericAPIView):
|
|||||||
serializer.is_valid(raise_exception=True)
|
serializer.is_valid(raise_exception=True)
|
||||||
|
|
||||||
user = User.objects.get(pk=request.user.id)
|
user = User.objects.get(pk=request.user.id)
|
||||||
|
displayname = user.username
|
||||||
|
if user.first_name or user.last_name:
|
||||||
|
displayname = " ".join([user.first_name, user.last_name])
|
||||||
settings = []
|
settings = []
|
||||||
if hasattr(user, "ui_settings"):
|
if hasattr(user, "ui_settings"):
|
||||||
settings = user.ui_settings.settings
|
settings = user.ui_settings.settings
|
||||||
return Response(
|
return Response(
|
||||||
{
|
{
|
||||||
"user_id": user.id,
|
"user_id": user.id,
|
||||||
|
"username": user.username,
|
||||||
|
"display_name": displayname,
|
||||||
"settings": settings,
|
"settings": settings,
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user