Search moodle.org's
Developer Documentation

See Release Notes

  • Bug fixes for general core bugs in 3.11.x will end 14 Nov 2022 (12 months plus 6 months extension).
  • Bug fixes for security issues in 3.11.x will end 13 Nov 2023 (18 months plus 12 months extension).
  • PHP version: minimum PHP 7.3.0 Note: minimum PHP version has increased since Moodle 3.10. PHP 7.4.x is supported too.

Differences Between: [Versions 310 and 311] [Versions 311 and 401] [Versions 311 and 402] [Versions 311 and 403] [Versions 39 and 311]

(no description)

File Size: 805 lines (23 kb)
Included or required: 2 times
Referenced: 0 times
Includes or requires: 0 files

Defines 11 classes

OAuthException:: (0 methods):

OAuthConsumer:: (2 methods):
  __construct()
  __toString()

OAuthToken:: (3 methods):
  __construct()
  to_string()
  __toString()

OAuthSignatureMethod:: (1 method):
  check_signature()

OAuthSignatureMethod_HMAC_SHA1:: (2 methods):
  get_name()
  build_signature()

OAuthSignatureMethod_PLAINTEXT:: (2 methods):
  get_name()
  build_signature()

OAuthSignatureMethod_RSA_SHA1:: (5 methods):
  get_name()
  fetch_public_cert()
  fetch_private_cert()
  build_signature()
  check_signature()

OAuthRequest:: (19 methods):
  __construct()
  from_request()
  from_consumer_and_token()
  set_parameter()
  get_parameter()
  get_parameters()
  unset_parameter()
  get_signable_parameters()
  get_signature_base_string()
  get_normalized_http_method()
  get_normalized_http_url()
  to_url()
  to_postdata()
  to_header()
  __toString()
  sign_request()
  build_signature()
  generate_timestamp()
  generate_nonce()

OAuthServer:: (12 methods):
  __construct()
  add_signature_method()
  fetch_request_token()
  fetch_access_token()
  verify_request()
  get_version()
  get_signature_method()
  get_consumer()
  get_token()
  check_signature()
  check_timestamp()
  check_nonce()

OAuthDataStore:: (5 methods):
  lookup_consumer()
  lookup_token()
  lookup_nonce()
  new_request_token()
  new_access_token()

OAuthUtil:: (6 methods):
  urlencode_rfc3986()
  urldecode_rfc3986()
  split_header()
  get_headers()
  parse_parameters()
  build_http_query()


Class: OAuthException  - X-Ref

Class: OAuthConsumer  - X-Ref

__construct($key, $secret, $callback_url=NULL)   X-Ref
No description

__toString()   X-Ref
No description

Class: OAuthToken  - X-Ref

__construct($key, $secret)   X-Ref
key = the token
secret = the token secret


to_string()   X-Ref
generates the basic string serialization of a token that a server
would respond to request_token and access_token calls with


__toString()   X-Ref
No description

Class: OAuthSignatureMethod_HMAC_SHA1  - X-Ref

get_name()   X-Ref
No description

build_signature($request, $consumer, $token)   X-Ref
No description

Class: OAuthSignatureMethod_PLAINTEXT  - X-Ref

get_name()   X-Ref
No description

build_signature($request, $consumer, $token)   X-Ref
No description

Class: OAuthSignatureMethod_RSA_SHA1  - X-Ref

get_name()   X-Ref
No description

fetch_public_cert(&$request)   X-Ref
No description

fetch_private_cert(&$request)   X-Ref
No description

build_signature(&$request, $consumer, $token)   X-Ref
No description

check_signature(&$request, $consumer, $token, $signature)   X-Ref
No description

Class: OAuthRequest  - X-Ref

__construct($http_method, $http_url, $parameters=NULL)   X-Ref
No description

from_request($http_method=NULL, $http_url=NULL, $parameters=NULL)   X-Ref
attempt to build up a request from what was passed to the server


from_consumer_and_token($consumer, $token, $http_method, $http_url, $parameters=NULL)   X-Ref
pretty much a helper function to set up the request


set_parameter($name, $value, $allow_duplicates = true)   X-Ref
No description

get_parameter($name)   X-Ref
No description

get_parameters()   X-Ref
No description

unset_parameter($name)   X-Ref
No description

get_signable_parameters()   X-Ref
The request parameters, sorted and concatenated into a normalized string.

return: string

get_signature_base_string()   X-Ref
Returns the base string of this request

The base string defined as the method, the url
and the parameters (normalized), each urlencoded
and the concated with &.

get_normalized_http_method()   X-Ref
just uppercases the http method


get_normalized_http_url()   X-Ref
parses the url and rebuilds it to be
scheme://host/path


to_url()   X-Ref
builds a url usable for a GET request


to_postdata()   X-Ref
builds the data one would send in a POST request


to_header()   X-Ref
builds the Authorization: header


__toString()   X-Ref
No description

sign_request($signature_method, $consumer, $token)   X-Ref
No description

build_signature($signature_method, $consumer, $token)   X-Ref
No description

generate_timestamp()   X-Ref
util function: current timestamp


generate_nonce()   X-Ref
util function: current nonce


Class: OAuthServer  - X-Ref

__construct($data_store)   X-Ref
No description

add_signature_method($signature_method)   X-Ref
No description

fetch_request_token(&$request)   X-Ref
process a request_token request
returns the request token on success


fetch_access_token(&$request)   X-Ref
process an access_token request
returns the access token on success


verify_request(&$request)   X-Ref
verify an api call, checks all the parameters


get_version(&$request)   X-Ref
version 1


get_signature_method(&$request)   X-Ref
figure out the signature with some defaults


get_consumer(&$request)   X-Ref
try to find the consumer for the provided request's consumer key


get_token(&$request, $consumer, $token_type="access")   X-Ref
try to find the token for the provided request's token key


check_signature(&$request, $consumer, $token)   X-Ref
all-in-one function to check the signature on a request
should guess the signature method appropriately


check_timestamp($timestamp)   X-Ref
check that the timestamp is new enough


check_nonce($consumer, $token, $nonce, $timestamp)   X-Ref
check that the nonce is not repeated


Class: OAuthDataStore  - X-Ref

lookup_consumer($consumer_key)   X-Ref
No description

lookup_token($consumer, $token_type, $token)   X-Ref
No description

lookup_nonce($consumer, $token, $nonce, $timestamp)   X-Ref
No description

new_request_token($consumer)   X-Ref
No description

new_access_token($token, $consumer)   X-Ref
No description

Class: OAuthUtil  - X-Ref

urlencode_rfc3986($input)   X-Ref
No description

urldecode_rfc3986($string)   X-Ref
No description

split_header($header, $only_allow_oauth_parameters = true)   X-Ref
No description

get_headers()   X-Ref
No description

parse_parameters( $input )   X-Ref
No description

build_http_query($params)   X-Ref
No description