Moodle PHP Documentation 4.3
Moodle 4.3.5 (Build: 20240610) (7dcfaa79f78)
core\oauth2\rest Class Reference

Rest API base class mapping rest api methods to endpoints with http methods, args and post body. More...

Inheritance diagram for core\oauth2\rest:
fileconverter_googledrive\rest repository_googledocs\rest repository_nextcloud\ocs_client repository_onedrive\rest

Public Member Functions

 __construct (curl $curl)
 Constructor.
 
 call ($functionname, $functionargs, $rawpost=false, $contenttype=false)
 Call a function from the Api with a set of arguments and optional data.
 
 get_api_functions ()
 Abstract function to define the functions of the rest API.
 

Protected Attributes

curl $curl
 $curl
 

Detailed Description

Rest API base class mapping rest api methods to endpoints with http methods, args and post body.

License
http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later

Constructor & Destructor Documentation

◆ __construct()

core\oauth2\rest::__construct ( curl $curl)

Constructor.

Parameters
curl$curl

Member Function Documentation

◆ call()

core\oauth2\rest::call ( $functionname,
$functionargs,
$rawpost = false,
$contenttype = false )

Call a function from the Api with a set of arguments and optional data.

Parameters
string$functionname
array$functionargs
string$rawpostOptional param to include in the body of a post.
string$contenttypeThe MIME type for the request's Content-Type header.
Return values
string|stdClass

Reimplemented in repository_nextcloud\ocs_client.

◆ get_api_functions()

core\oauth2\rest::get_api_functions ( )
abstract

Abstract function to define the functions of the rest API.

Return values
arrayExample: [ 'listFiles' => [ 'method' => 'get', 'args' => [ 'folder' => PARAM_STRING ], 'response' => 'json' ] ]

Reimplemented in fileconverter_googledrive\rest, repository_googledocs\rest, repository_nextcloud\ocs_client, and repository_onedrive\rest.


The documentation for this class was generated from the following file: