mirror of
https://gitlab.bertha.cloud/partitio/Nextcloud-Partitio/gonextcloud
synced 2024-11-14 06:06:24 +00:00
75 lines
1.7 KiB
Go
75 lines
1.7 KiB
Go
package gonextcloud
|
|
|
|
import (
|
|
req "github.com/levigross/grequests"
|
|
"gitlab.bertha.cloud/partitio/Nextcloud-Partitio/gonextcloud/types"
|
|
"net/http"
|
|
)
|
|
|
|
//Apps contains all Apps available actions
|
|
type Apps struct {
|
|
c *Client
|
|
}
|
|
|
|
//List return the list of the Nextcloud Apps
|
|
func (a *Apps) List() ([]string, error) {
|
|
res, err := a.c.baseRequest(http.MethodGet, routes.apps, nil)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
var r types.AppListResponse
|
|
res.JSON(&r)
|
|
return r.Ocs.Data.Apps, nil
|
|
}
|
|
|
|
//ListEnabled lists the enabled apps
|
|
func (a *Apps) ListEnabled() ([]string, error) {
|
|
ro := &req.RequestOptions{
|
|
Params: map[string]string{"filter": "enabled"},
|
|
}
|
|
res, err := a.c.baseRequest(http.MethodGet, routes.apps, ro)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
var r types.AppListResponse
|
|
res.JSON(&r)
|
|
return r.Ocs.Data.Apps, nil
|
|
}
|
|
|
|
//ListDisabled lists the disabled apps
|
|
func (a *Apps) ListDisabled() ([]string, error) {
|
|
ro := &req.RequestOptions{
|
|
Params: map[string]string{"filter": "disabled"},
|
|
}
|
|
res, err := a.c.baseRequest(http.MethodGet, routes.apps, ro)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
var r types.AppListResponse
|
|
res.JSON(&r)
|
|
return r.Ocs.Data.Apps, nil
|
|
}
|
|
|
|
//Infos return the app's details
|
|
func (a *Apps) Infos(name string) (types.App, error) {
|
|
res, err := a.c.baseRequest(http.MethodGet, routes.apps, nil, name)
|
|
if err != nil {
|
|
return types.App{}, err
|
|
}
|
|
var r types.AppResponse
|
|
res.JSON(&r)
|
|
return r.Ocs.Data, nil
|
|
}
|
|
|
|
//Enable enables an app
|
|
func (a *Apps) Enable(name string) error {
|
|
_, err := a.c.baseRequest(http.MethodPost, routes.apps, nil, name)
|
|
return err
|
|
}
|
|
|
|
//Disable disables an app
|
|
func (a *Apps) Disable(name string) error {
|
|
_, err := a.c.baseRequest(http.MethodDelete, routes.apps, nil, name)
|
|
return err
|
|
}
|