Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 | 3x 17x 17x 17x 7x 3x 4x 3x 1x 7x 3x 4x 3x 1x 5x 3x 2x 3x 3x 3x | import { Cookie, CookieGetOptions, CookieSetOptions } from 'universal-cookie'
export class CookiesManagerWrapper implements CookiesManager
{
private cookiesManager: CookiesManager
private cookies: string[]
private enabler: () => boolean
constructor(cookiesManager: CookiesManager, cookies: string[], enabler: () => boolean) {
this.cookiesManager = cookiesManager
this.cookies = cookies
this.enabler = enabler
}
public set (name: string, value: Cookie, options?: CookieSetOptions) : void {
if (!this.enabler()) {
throw new DisabledError('access disabled')
}
if (this.cookies.indexOf(name) < 0) {
throw new AccessDeniedError('access denied')
}
this.cookiesManager.set(name, value, options)
}
public get (name: string, options?: CookieGetOptions): any {
if (!this.enabler()) {
throw new DisabledError('access disabled')
}
if (this.cookies.indexOf(name) < 0) {
throw new AccessDeniedError('access denied')
}
return this.cookiesManager.get(name, options)
}
public remove (name: string, options?: CookieSetOptions): void {
if (this.cookies.indexOf(name) < 0) {
throw new AccessDeniedError('access denied')
}
this.cookiesManager.remove(name, options)
}
}
export class CookieError extends Error {}
export class AccessDeniedError extends CookieError {}
export class DisabledError extends CookieError {}
export interface CookiesManager {
get (name: string, options?: CookieGetOptions): any
set (name: string, value: Cookie, options?: CookieSetOptions): void
remove (name: string, options?: CookieSetOptions): void
}
|