Options
All
  • Public
  • Public/Protected
  • All
Menu

Class CollectionsService

Hierarchy

  • CollectionsService

Index

Constructors

constructor

Properties

Private accountService

accountService: AccountService

Private http

http: Http

Private portalApiUrl

portalApiUrl: string

Private router

router: Router

Methods

addCopyOfResourceResourceToCollection

  • addCopyOfResourceResourceToCollection(collectionid: string, owcResource: OwcResource): Observable<OwcContext>
  • POST /api/v1/collections/entry -> controllers.CollectionsController.addResourceToCollection(collectionid: String) -> Ok(Json.obj("message" -> "owcResource added to owcContext", "document" -> theDoc.toJson, "entry" -> owcResource.toJson))

    add a resource entry to a collection, the user must own the owccontext collection and the resource will be refreshed with a unique copy of server-side (not conflicts should happen on multiple re-use)

    Parameters

    Returns Observable<OwcContext>

addResourceToCollection

  • POST /api/v1/collections/entry -> controllers.CollectionsController.addResourceToCollection(collectionid: String) -> Ok(Json.obj("message" -> "owcResource added to owcContext", "document" -> theDoc.toJson, "entry" -> owcResource.toJson))

    add a resource AS IS entry to a collection, the user must own the owccontext collection and the resource id must not exist

    Parameters

    Returns Observable<OwcContext>

createNewCustomCollection

  • createNewCustomCollection(): Observable<OwcContext>

deleteCollectionById

  • deleteCollectionById(collectionid: string): Observable<boolean>
  • GET /api/v1/collections/delete -> controllers.CollectionsController.deleteCollection(id: String) -> Ok(Json.obj("message" -> "owcContext deleted", "document" -> owcContextId))

    delete specific collection that you have access to, server will check that and either allow or fail the operation

    Parameters

    • collectionid: string

    Returns Observable<boolean>

deleteResourceFromCollection

  • deleteResourceFromCollection(collectionid: string, resourceid: string): Observable<OwcContext>
  • GET /api/v1/collections/entry/delete -> controllers.CollectionsController.deleteResourceFromCollection(collectionid: String, resourceid: String) -> Ok(Json.obj("message" -> "owcResource removed from owcContext", "document" -> theDoc.toJson))

    delete a resource entry from a collection

    Parameters

    • collectionid: string
    • resourceid: string

    Returns Observable<OwcContext>

getCollectionById

  • getCollectionById(id: string): Observable<OwcContext>

getCollections

getDefaultCollection

getNewUuid

  • getNewUuid(): string

getUploadedFilesFromDefaultCollection

  • getUploadedFilesFromDefaultCollection(filtertoken?: string): Observable<Array<OwcLink>>
  • get all uploaded files in user's default collection getPersonalFilesFromDefaultCollection returns owc Data Links

    Parameters

    • Optional filtertoken: string

    Returns Observable<Array<OwcLink>>

Private handleHttpFailure

  • handleHttpFailure(errorResponse: Response | any): ErrorObservable

insertCollection

  • POST /api/v1/collections -> controllers.CollectionsController.insertCollection -> Ok(Json.obj("message" -> "owcContext inserted", "document" -> theDoc.toJson))

    insert a collection, the owcContext.id must not exist on the server or it will fail

    Parameters

    Returns Observable<OwcContext>

insertCopyOfCollection

  • POST /api/v1/collections/copy -> controllers.CollectionsController.insertCopyOfCollection -> Ok(Json.obj("message" -> "owcContext inserted", "document" -> theDoc.toJson))

    insert a collection, the owcContext.id must not exist on the server or it will fail

    Parameters

    Returns Observable<OwcContext>

queryCollectionForViewing

  • queryCollectionForViewing(id?: string): Observable<OwcContext>

queryCollectionsForViewing

  • queryCollectionsForViewing(loggedInResult: boolean, id?: string, keywords?: string[]): Observable<OwcContext[]>
  • GET /api/v1/collections/view-query -> controllers.CollectionsController.queryCollectionsForViewing(id: Option[String], keywords: Seq[String] ?= Seq())

    Parameters

    • loggedInResult: boolean
    • Optional id: string
    • Optional keywords: string[]

    Returns Observable<OwcContext[]>

replaceResourceInCollection

  • POST /api/v1/collections/entry/replace -> controllers.CollectionsController.replaceResourceInCollection(collectionid: String) -> Ok(Json.obj("message" -> "owcResource replaced in owcContext", "document" -> theDoc.toJson, "entry" -> owcResource.toJson))

    update a resource entry in a colection, the collection and the resource must exist in that constallation with the user owning them

    Parameters

    Returns Observable<OwcContext>

updateCollection

  • POST /api/v1/collections/update -> controllers.CollectionsController.updateCollection -> Ok(Json.obj("message" -> "owcContext updated", "document" -> theDoc.toJson))

    update a collection, the owcContext.id must already exist on the server and user must own or it will fail

    Parameters

    Returns Observable<OwcContext>

Generated using TypeDoc