Proposals/MNet replacement/Connection manager
From Mahara Wiki
< Proposals | MNet replacement
Web Services Client Connection Manager
Summary
This specification describes the new functionality for managing client connections (Mahara is the client) for web service interactions, and the utility functions/classes that abstract away the complexities of making web services calls for Plugin developers.
Target Release
Mahara 15.04
Owner
TBD
References
Inspiration for the implementation pattern was source from Developer_Area/Core_Subsystems/Artefact_Plugins_//_Artefact_Types, and the Web Services plugin .
Motivation
The idea behind this requirement is to abstract away the management of connection details from individual components of Mahara (eg. a plugin), so that each component does not need to maintain a set of configuration, and the management of that configuration is consistent in behaviour, look and feel.
Once there is a consistent management of Web Service client connections, it is also possible to abstract away the code in helper classes and functions for executing Web Service calls, which should streamline and component development, and ensure that components use a common code base for Web Service interaction.
Use Cases (Stories)
Plugin Developer
Description
As a plugin developer, I want to be able to have a logical reference to a list of connections that refer to 1 or more web service end points that I can pass attributes to for web service call execution.
Preconditions
- Developing a plugin is dependent on inheriting from class 'Plugin' .
Steps
- With each plugin developed, specify a list of connection 'handles' that represent client connections that my plugin will interact with.
- When I wish to execute a remote web service call, I can call a function that returns a list of prefabricated client connections. These client connections are an abstraction from the complexity of dealing with different web services protocols, authentication, and encoding schemas, so that I can concentrate on formulating the data packet, and interpreting the results.
Postconditions
Metadata for the Plugin related client connections has been defined.
Mahara administrator
Description
As a Mahara administrator I want an interface that enables me to configure a logical reference to a a list of web service connections.
Preconditions
- Plugin developers have defined the client connection related metadata.
Steps
- Login as an Administrator, and go to Institution specific configuration.
- Add, amend, delete or reorder priority of client connection instances.
- Drill into a client connection and specify name, version. protocol, authentication, and end point configuration.
- enable/disable client connection instance.
- enable/disable all client connections.
Postconditions
- A list of client connection instances are maintained for each Institution.
- The web service client connection instances must adequately describe the supported protocols of SOAP, XML-RPC, and REST using the payload encodings of SOAP, XML, URL, and JSON where appropriate. The connections must also support the configuration of authentication options of token, user+password, OAuth1.x and WSSE where appropriate.
Specification
Client connection objects will be inherently tied to a plugin. This enables existing functionality for automatic lookup and discovery of plugin features to be used and also restricts the context of web service client execution to:
- a single plugin
- the contextual institution of the logged-in user
- the access control rights of the logged in user
In order to support this the changes required fall into two broad categories:
- interactive configuration components for maintaining the connection metadata
- Plugin framework class modifications to support web service client abstractions
Client Connection Manager
A plugin or component that needs a Web Service client connection:
- requires a reference 'name' put in plugin 'lib.php' class definition file - refer to Mahara 'events' get_event_subscriptions() as an example
- multiple connections to various targets - this could be multiple remote web service function calls, or multiple external systems to be integrated with simultaneously for the same API
Metadata
Client Connection Instance | |||
---|---|---|---|
Mandatory | Element | Type | Default |
M | name/handle (from settings - class level attr) | String | None |
M | enable/disable individual instance | Boolean/Checkbox | Disabled |
M | priority of instance | Integer/Ordinal | 1 |
O | instance name - not necessarily unique but could be used by plugin to determine a different payload requirement | String | None |
O | instance interface version - remote version supported for this instance | String | None |
M | is fatal - if error, what do we do ? | Boolean/Checkbox | False |
M | type (SOAP, XML-RPC, REST) | String | REST |
M | payload encoding (SOAP-SOAP, XML-RPC - XML, REST-URL,XML,JSON) | String | URL Encoded |
M | auth (SOAP- token, user+pass, wsse; XML-RPC- cert, token, user+pass; REST - token, user+pass, OAuth1.x) | String | None |
M | Web Service endpoint | String | None |
O | user/consumer key | String | None |
O | password/consumer secret | String | None |
O | token | String | None |
O | X509 Certificate for XML-RPC | String | None |
O | Additional parameter/values to pass | String | None |
O | Additional parameters POST body/GET | String | GET |
Note:
- one of user/consumer key + password/consumer secret, or token, or X509 certificate must be specified.
- if additional parameters are specified, then POST/GET must be specified
Plugin Abstraction Layer
Return a list of connection classes defined for this plugin. These will be used to determine what connection classes are available for configuration in the connection manager. Empty if none.
class Plugin implments IPlugin {
...
function define_webservice_connections() {
return array();
}
function get_web_service_connections() {
# query connection manager tables for list of connections
# build and return a list of connection objects based on each client connection instance specification
...
}
...
class AuthPlugin extends Plugin {
...
class MyAuthPlugin extends PluginAuth {
...
function define_webservice_connections() {
return array(array('id' => 'my_connection', 'name' => 'My Plugin WebService Connection'), ...);
}
...
In the plugin developers code, get_webservice_connections() is called and returns a list of client connection objects, that can be called to execute the relevant web services call.
foreach ($plugin->get_webservice_connections() as $connection) {
try {
$results = $connection->call('core_user_get_users_by_field', array('field' => 'username', 'values' => array($dbuser->username)));
} catch (Exception $e) {
...
}
}
Assumptions
Issues
Process Flow
UX
This should contain discussion of the UX implications of the change. If the UX discussion already has a design proposal, a link should be inserted here. If the discussion is ongoing it can take place in the whiteboard area.
Wireframes, & Mockups
Connection Manager
The connection manager is an extension of the exiting Institution configuration page - navigate Adminstration -> Institutions -> 'Edit' Institution.
Connection Manager Master Switch
The master switch for disabling/enabling all client connections is located on the main Web Services configuration page.
Classes, Utilities
Database Tables
Security
Modifications to Other code
Testing
Brief instruction for reviewers to exercise the changes, including expected results where non-obvious.
Dependencies
Is this functionality already supported in other services? List the appropriate API calls and if they are extensions or base API functionality.
This should describe any cross project dependencies. This should include:
* changes to Mahara services * changes in external projects
Links to particular patches should be included in the whiteboard area.
Doc Impact
This should describe any changes to Mahara documentation that will be required. This could include:
* settings file changes that will be required * changes to default behaviours * any deprecation or obsolescence notices
Milestones
How the work can be broken up