Documentation ¶
Index ¶
- func CopyDocument(ctx domain.RequestContext, s domain.Store, documentID string) (newDocumentID string, err error)
- func FilterCategoryProtected(docs []doc.Document, cats []category.Category, members []category.Member, ...) (filtered []doc.Document)
- func FilterLastVersion(docs []doc.Document) (filtered []doc.Document)
- type BulkDocumentData
- type Handler
- func (h *Handler) BySpace(w http.ResponseWriter, r *http.Request)
- func (h *Handler) Delete(w http.ResponseWriter, r *http.Request)
- func (h *Handler) DocumentLinks(w http.ResponseWriter, r *http.Request)
- func (h *Handler) FetchDocumentData(w http.ResponseWriter, r *http.Request)
- func (h *Handler) Get(w http.ResponseWriter, r *http.Request)
- func (h *Handler) SearchDocuments(w http.ResponseWriter, r *http.Request)
- func (h *Handler) Update(w http.ResponseWriter, r *http.Request)
- func (h *Handler) Vote(w http.ResponseWriter, r *http.Request)
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func CopyDocument ¶ added in v1.59.0
func CopyDocument(ctx domain.RequestContext, s domain.Store, documentID string) (newDocumentID string, err error)
CopyDocument clones an existing document
func FilterCategoryProtected ¶ added in v1.59.0
func FilterCategoryProtected(docs []doc.Document, cats []category.Category, members []category.Member, viewDrafts bool) (filtered []doc.Document)
FilterCategoryProtected removes documents that cannot be seen by user due to document cateogory viewing permissions.
Types ¶
type BulkDocumentData ¶ added in v1.56.0
type BulkDocumentData struct { Document doc.Document `json:"document"` Permissions pm.Record `json:"permissions"` Roles pm.DocumentRecord `json:"roles"` Spaces []space.Space `json:"folders"` Links []link.Link `json:"links"` Versions []doc.Version `json:"versions"` }
BulkDocumentData represents all data associated for a single document. Used by FetchDocumentData() bulk data load call.
type Handler ¶
Handler contains the runtime information such as logging and database.
func (*Handler) BySpace ¶
func (h *Handler) BySpace(w http.ResponseWriter, r *http.Request)
BySpace is an endpoint that returns the documents for given space.
func (*Handler) Delete ¶
func (h *Handler) Delete(w http.ResponseWriter, r *http.Request)
Delete is an endpoint that deletes a document specified by documentID.
func (*Handler) DocumentLinks ¶
func (h *Handler) DocumentLinks(w http.ResponseWriter, r *http.Request)
DocumentLinks is an endpoint returning the links for a document.
func (*Handler) FetchDocumentData ¶ added in v1.54.0
func (h *Handler) FetchDocumentData(w http.ResponseWriter, r *http.Request)
FetchDocumentData returns all document data in single API call.
func (*Handler) Get ¶
func (h *Handler) Get(w http.ResponseWriter, r *http.Request)
Get is an endpoint that returns the document-level information for a given documentID.
func (*Handler) SearchDocuments ¶
func (h *Handler) SearchDocuments(w http.ResponseWriter, r *http.Request)
SearchDocuments endpoint takes a list of keywords and returns a list of document references matching those keywords.