mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
34 lines
968 B
TypeScript
34 lines
968 B
TypeScript
import { HttpClient } from '@angular/common/http'
|
|
import { Injectable } from '@angular/core'
|
|
import { Observable } from 'rxjs'
|
|
import { FileVersion, ShareLink } from 'src/app/data/share-link'
|
|
import { AbstractNameFilterService } from './abstract-name-filter-service'
|
|
|
|
@Injectable({
|
|
providedIn: 'root',
|
|
})
|
|
export class ShareLinkService extends AbstractNameFilterService<ShareLink> {
|
|
constructor(http: HttpClient) {
|
|
super(http, 'share_links')
|
|
}
|
|
|
|
getLinksForDocument(documentId: number): Observable<ShareLink[]> {
|
|
return this.http.get<ShareLink[]>(
|
|
`${this.baseUrl}documents/${documentId}/${this.resourceName}/`
|
|
)
|
|
}
|
|
|
|
createLinkForDocument(
|
|
documentId: number,
|
|
file_version: FileVersion = FileVersion.Archive,
|
|
expiration: Date = null
|
|
) {
|
|
this.clearCache()
|
|
return this.http.post<ShareLink>(this.getResourceUrl(), {
|
|
document: documentId,
|
|
file_version,
|
|
expiration: expiration?.toISOString(),
|
|
})
|
|
}
|
|
}
|