X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;ds=sidebyside;f=client%2Fsrc%2Fapp%2Fcore%2Fauth%2Fauth-user.model.ts;h=cd9665e378d96ab67a67ad825b8f98869475c0a2;hb=a9bfa85d2cdf13670aaced740da5b493fbeddfce;hp=7115b97817ca2118448d0d16675a9058dbfb3260;hpb=af5e743b01f20f24d0c25e786d57f557b21f3a24;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/src/app/core/auth/auth-user.model.ts b/client/src/app/core/auth/auth-user.model.ts index 7115b9781..cd9665e37 100644 --- a/client/src/app/core/auth/auth-user.model.ts +++ b/client/src/app/core/auth/auth-user.model.ts @@ -1,127 +1,79 @@ -// Do not use the barrel (dependency loop) -import { User } from '../../shared/users/user.model'; - -export class AuthUser extends User { - private static KEYS = { - ID: 'id', - ROLE: 'role', - USERNAME: 'username', - DISPLAY_NSFW: 'display_nsfw' - }; - - tokens: Tokens; - - static load() { - const usernameLocalStorage = localStorage.getItem(this.KEYS.USERNAME); - if (usernameLocalStorage) { - return new AuthUser( - { - id: parseInt(localStorage.getItem(this.KEYS.ID)), - username: localStorage.getItem(this.KEYS.USERNAME), - role: localStorage.getItem(this.KEYS.ROLE), - displayNSFW: localStorage.getItem(this.KEYS.DISPLAY_NSFW) === 'true' - }, - Tokens.load() - ); - } - - return null; +import { Observable, of } from 'rxjs' +import { map } from 'rxjs/operators' +import { User } from '@app/core/users/user.model' +import { UserTokens } from '@root-helpers/users' +import { hasUserRight } from '@shared/core-utils/users' +import { + MyUser as ServerMyUserModel, + MyUserSpecialPlaylist, + User as ServerUserModel, + UserRight, + UserRole, + UserVideoQuota +} from '@shared/models' + +export class AuthUser extends User implements ServerMyUserModel { + tokens: UserTokens + specialPlaylists: MyUserSpecialPlaylist[] + + canSeeVideosLink = true + + constructor (userHash: Partial, hashTokens: Partial) { + super(userHash) + + this.tokens = new UserTokens(hashTokens) + this.specialPlaylists = userHash.specialPlaylists } - static flush() { - localStorage.removeItem(this.KEYS.USERNAME); - localStorage.removeItem(this.KEYS.ID); - localStorage.removeItem(this.KEYS.ROLE); - localStorage.removeItem(this.KEYS.DISPLAY_NSFW); - Tokens.flush(); + getAccessToken () { + return this.tokens.accessToken } - constructor(userHash: { - id: number, - username: string, - role: string, - displayNSFW: boolean - }, hashTokens: any) { - super(userHash); - this.tokens = new Tokens(hashTokens); + getRefreshToken () { + return this.tokens.refreshToken } - getAccessToken() { - return this.tokens.access_token; + getTokenType () { + return this.tokens.tokenType } - getRefreshToken() { - return this.tokens.refresh_token; + refreshTokens (accessToken: string, refreshToken: string) { + this.tokens.accessToken = accessToken + this.tokens.refreshToken = refreshToken } - getTokenType() { - return this.tokens.token_type; + hasRight (right: UserRight) { + return hasUserRight(this.role, right) } - refreshTokens(access_token: string, refresh_token: string) { - this.tokens.access_token = access_token; - this.tokens.refresh_token = refresh_token; - } - - save() { - localStorage.setItem(AuthUser.KEYS.ID, this.id.toString()); - localStorage.setItem(AuthUser.KEYS.USERNAME, this.username); - localStorage.setItem(AuthUser.KEYS.ROLE, this.role); - localStorage.setItem(AuthUser.KEYS.DISPLAY_NSFW, JSON.stringify(this.displayNSFW)); - this.tokens.save(); - } -} + canManage (user: ServerUserModel) { + const myRole = this.role -// Private class only used by User -class Tokens { - private static KEYS = { - ACCESS_TOKEN: 'access_token', - REFRESH_TOKEN: 'refresh_token', - TOKEN_TYPE: 'token_type', - }; + if (myRole === UserRole.ADMINISTRATOR) return true - access_token: string; - refresh_token: string; - token_type: string; - - static load() { - const accessTokenLocalStorage = localStorage.getItem(this.KEYS.ACCESS_TOKEN); - const refreshTokenLocalStorage = localStorage.getItem(this.KEYS.REFRESH_TOKEN); - const tokenTypeLocalStorage = localStorage.getItem(this.KEYS.TOKEN_TYPE); - - if (accessTokenLocalStorage && refreshTokenLocalStorage && tokenTypeLocalStorage) { - return new Tokens({ - access_token: accessTokenLocalStorage, - refresh_token: refreshTokenLocalStorage, - token_type: tokenTypeLocalStorage - }); - } - - return null; + // I'm a moderator: I can only manage users + return user.role === UserRole.USER } - static flush() { - localStorage.removeItem(this.KEYS.ACCESS_TOKEN); - localStorage.removeItem(this.KEYS.REFRESH_TOKEN); - localStorage.removeItem(this.KEYS.TOKEN_TYPE); - } - - constructor(hash?: any) { - if (hash) { - this.access_token = hash.access_token; - this.refresh_token = hash.refresh_token; - - if (hash.token_type === 'bearer') { - this.token_type = 'Bearer'; - } else { - this.token_type = hash.token_type; - } + computeCanSeeVideosLink (quotaObservable: Observable): Observable { + if (!this.isUploadDisabled()) { + this.canSeeVideosLink = true + return of(this.canSeeVideosLink) } - } - save() { - localStorage.setItem('access_token', this.access_token); - localStorage.setItem('refresh_token', this.refresh_token); - localStorage.setItem('token_type', this.token_type); + // Check if the user has videos + return quotaObservable.pipe( + map(({ videoQuotaUsed }) => { + if (videoQuotaUsed !== 0) { + // User already uploaded videos, so it can see the link + this.canSeeVideosLink = true + } else { + // No videos, no upload so the user don't need to see the videos link + this.canSeeVideosLink = false + } + + return this.canSeeVideosLink + }) + ) } }