mirror of
				https://gitlab.bertha.cloud/partitio/Nextcloud-Partitio/gonextcloud
				synced 2025-10-31 08:11:45 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			75 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			75 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| package gonextcloud
 | |
| 
 | |
| import (
 | |
| 	req "github.com/levigross/grequests"
 | |
| 	"github.com/partitio/gonextcloud/types"
 | |
| 	"net/http"
 | |
| )
 | |
| 
 | |
| //AppList return the list of the Nextcloud Apps
 | |
| func (c *Client) AppList() ([]string, error) {
 | |
| 	res, err := c.baseRequest(routes.apps, "", "", nil, http.MethodGet)
 | |
| 	if err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 	var r types.AppListResponse
 | |
| 	res.JSON(&r)
 | |
| 	return r.Ocs.Data.Apps, nil
 | |
| }
 | |
| 
 | |
| //AppListEnabled lists the enabled apps
 | |
| func (c *Client) AppListEnabled() ([]string, error) {
 | |
| 	ro := &req.RequestOptions{
 | |
| 		Params: map[string]string{"filter": "enabled"},
 | |
| 	}
 | |
| 	res, err := c.baseRequest(routes.apps, "", "", ro, http.MethodGet)
 | |
| 	if err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 	var r types.AppListResponse
 | |
| 	res.JSON(&r)
 | |
| 	return r.Ocs.Data.Apps, nil
 | |
| }
 | |
| 
 | |
| //AppListDisabled lists the disabled apps
 | |
| func (c *Client) AppListDisabled() ([]string, error) {
 | |
| 	ro := &req.RequestOptions{
 | |
| 		Params: map[string]string{"filter": "disabled"},
 | |
| 	}
 | |
| 	res, err := c.baseRequest(routes.apps, "", "", ro, http.MethodGet)
 | |
| 	if err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 	var r types.AppListResponse
 | |
| 	res.JSON(&r)
 | |
| 	return r.Ocs.Data.Apps, nil
 | |
| }
 | |
| 
 | |
| //AppInfos return the app's details
 | |
| func (c *Client) AppInfos(name string) (types.App, error) {
 | |
| 	res, err := c.baseRequest(routes.apps, name, "", nil, http.MethodGet)
 | |
| 	if err != nil {
 | |
| 		return types.App{}, err
 | |
| 	}
 | |
| 	var r types.AppResponse
 | |
| 	res.JSON(&r)
 | |
| 	return r.Ocs.Data, nil
 | |
| }
 | |
| 
 | |
| //AppEnable enables an app
 | |
| func (c *Client) AppEnable(name string) error {
 | |
| 	_, err := c.baseRequest(routes.apps, name, "", nil, http.MethodPut)
 | |
| 	return err
 | |
| }
 | |
| 
 | |
| //AppDisable disables an app
 | |
| func (c *Client) AppDisable(name string) error {
 | |
| 	_, err := c.baseRequest(routes.apps, name, "", nil, http.MethodDelete)
 | |
| 	return err
 | |
| }
 | |
| 
 | |
| func (c *Client) appsBaseRequest(name string, route string, ro *req.RequestOptions, method string) error {
 | |
| 	_, err := c.baseRequest(routes.apps, name, route, ro, method)
 | |
| 	return err
 | |
| }
 |