mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
43 lines
1.2 KiB
TypeScript
43 lines
1.2 KiB
TypeScript
import { HttpClient } from '@angular/common/http'
|
|
import { Injectable } from '@angular/core'
|
|
import { Observable, switchMap } from 'rxjs'
|
|
import { User } from 'src/app/data/user'
|
|
import { PermissionsService } from '../permissions.service'
|
|
import { AbstractNameFilterService } from './abstract-name-filter-service'
|
|
|
|
const endpoint = 'users'
|
|
@Injectable({
|
|
providedIn: 'root',
|
|
})
|
|
export class UserService extends AbstractNameFilterService<User> {
|
|
constructor(
|
|
http: HttpClient,
|
|
private permissionService: PermissionsService
|
|
) {
|
|
super(http, endpoint)
|
|
}
|
|
|
|
update(o: User): Observable<User> {
|
|
return this.getCached(o.id).pipe(
|
|
switchMap((initialUser) => {
|
|
initialUser.user_permissions?.forEach((perm) => {
|
|
const { typeKey, actionKey } =
|
|
this.permissionService.getPermissionKeys(perm)
|
|
if (!typeKey || !actionKey) {
|
|
// dont lose permissions the UI doesn't use
|
|
o.user_permissions.push(perm)
|
|
}
|
|
})
|
|
return super.update(o)
|
|
})
|
|
)
|
|
}
|
|
|
|
deactivateTotp(u: User): Observable<boolean> {
|
|
return this.http.post<boolean>(
|
|
`${this.getResourceUrl(u.id, 'deactivate_totp')}`,
|
|
null
|
|
)
|
|
}
|
|
}
|