Search moodle.org's
Developer Documentation

See Release Notes

  • Bug fixes for general core bugs in 3.10.x will end 8 November 2021 (12 months).
  • Bug fixes for security issues in 3.10.x will end 9 May 2022 (18 months).
  • PHP version: minimum PHP 7.2.0 Note: minimum PHP version has increased since Moodle 3.8. PHP 7.3.x and 7.4.x are supported too.

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

Provides {@link flickr_client} class.

Copyright: 2017 David Mudrák <david@moodle.com>
License: http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
File Size: 270 lines (10 kb)
Included or required:0 times
Referenced: 0 times
Includes or requires: 0 files

Defines 1 class

flickr_client:: (7 methods):
  __construct()
  set_request_token_secret()
  get_request_token_secret()
  call()
  get_photo_url()
  upload()
  reset_state()


Class: flickr_client  - X-Ref

Simple Flickr API client implementing the features needed by Moodle

__construct($consumerkey, $consumersecret, $callbackurl = '')   X-Ref
Set up OAuth and initialize the client.

The callback URL specified here will override the one specified in the
auth flow defined at Flickr Services.

param: string $consumerkey
param: string $consumersecret
param: moodle_url|string $callbackurl

set_request_token_secret(array $identifiers, $secret)   X-Ref
Temporarily store the request token secret in the session.

The request token secret is returned by the oauth request_token method.
It needs to be stored in the session before the user is redirected to
the Flickr to authorize the client. After redirecting back, this secret
is used for exchanging the request token with the access token.

The identifiers help to avoid collisions between multiple calls to this
method from different plugins in the same session. They are used as the
session cache identifiers. Provide an associative array identifying the
particular method call. At least, the array must contain the 'caller'
with the caller's component name. Use additional items if needed.

param: array $identifiers Identification of the call
param: string $secret

get_request_token_secret(array $identifiers)   X-Ref
Returns previously stored request token secret.

See {@link self::set_request_token_secret()} for more details on the
$identifiers argument.

param: array $identifiers Identification of the call
return: string|bool False on error, string secret otherwise.

call($function, array $params = [], $method = 'GET')   X-Ref
Call a Flickr API method.

param: string $function API function name like 'flickr.photos.getSizes' or just 'photos.getSizes'
param: array $params Additional API call arguments.
param: string $method HTTP method to use (GET or POST).
return: object|bool Response as returned by the Flickr or false on invalid authentication

get_photo_url($photoid)   X-Ref
Return the URL to fetch the given photo from.

Flickr photos are distributed via farm servers staticflickr.com in
various sizes (resolutions). The method tries to find the source URL of
the photo in the highest possible resolution. Results are cached so that
we do not need to query the Flickr API over and over again.

param: string $photoid Flickr photo identifier
return: string URL

upload(stored_file $photo, array $meta = [])   X-Ref
Upload a photo from Moodle file pool to Flickr.

Optional meta information are title, description, tags, is_public,
is_friend, is_family, safety_level, content_type and hidden.
See {@link https://www.flickr.com/services/api/upload.api.html}.

Upload can't be asynchronous because then the query would not return the
photo ID which we need to add the photo to a photoset (album)
eventually.

param: stored_file $photo stored in Moodle file pool
param: array $meta optional meta information
return: int|bool photo id, false on authentication failure

reset_state()   X-Ref
Resets curl state.

return: void