RemoteAdmin:admin authenticate user
From OpenSimulator
Kira Komarov (Talk | contribs) m |
Kira Komarov (Talk | contribs) |
||
Line 59: | Line 59: | ||
− | === Error | + | === Error Messages === |
''error'' is set to "scene does not exist" in case no scene is available. | ''error'' is set to "scene does not exist" in case no scene is available. | ||
Line 73: | Line 73: | ||
''error'' is set to "authentication failed for FIRSTNAME LASTNAME" in case the authentication failed for user FISTNAME LASTNAME. | ''error'' is set to "authentication failed for FIRSTNAME LASTNAME" in case the authentication failed for user FISTNAME LASTNAME. | ||
+ | |||
+ | = Examples = | ||
+ | |||
+ | Using the ''wasRemoteAdmin'' class from [http://was.fm/opensim:remote_admin|Wizardry and Steamworks remote admin page], a call can be made to ''admin_authenticate_user'' to authenticate the avatar ''Kira Komarov'' using Remote Admin: | ||
+ | |||
+ | <source lang="php"> | ||
+ | <?php | ||
+ | # include the KOS class | ||
+ | require_once 'wasRemoteAdmin.php'; | ||
+ | # create a new connection to the OpenSim server | ||
+ | # with the hostname "OPENSIM" and port "10000" | ||
+ | # using the password "password" | ||
+ | $req = new wasRemoteAdmin('http://OPENSIM:10000', 'password'); | ||
+ | # send the console command "show info" to OpenSim | ||
+ | print $req->admin_authenticate_user('Kira', 'Komarov', 'mypassword', '10'); | ||
+ | </source> | ||
+ | |||
+ | which sends the request to OpenSim and returns an XML structure documented in the following section. | ||
+ | |||
+ | === Return XML === | ||
+ | |||
+ | ''admin_authenticate_user'' returns an XML structure indicating whether an error occurred or if the call was successful. | ||
+ | |||
+ | ==== Success ==== | ||
+ | |||
+ | On a successful call to ''admin_authenticate_user'', the following is an example of the returned XML. | ||
+ | |||
+ | <source lang="php"> | ||
+ | <methodResponse> | ||
+ | <params> | ||
+ | <param> | ||
+ | <value> | ||
+ | <struct> | ||
+ | <member> | ||
+ | <name>success</name> | ||
+ | <value> | ||
+ | <boolean>1</boolean> | ||
+ | </value> | ||
+ | </member> | ||
+ | <member> | ||
+ | <name>token</name> | ||
+ | <value> | ||
+ | <string>670962bb-7942-4d66-b7dc-b669b97e842e</string> | ||
+ | </value> | ||
+ | </member> | ||
+ | </struct> | ||
+ | </value> | ||
+ | </param> | ||
+ | </params> | ||
+ | </methodResponse> | ||
+ | </source> | ||
+ | |||
+ | ==== Failure ==== | ||
+ | |||
+ | On an unsuccessful call to ''admin_authenticate_user'', the following is an example of the returned XML. | ||
+ | |||
+ | <source lang="xml"> | ||
+ | <methodResponse> | ||
+ | <params> | ||
+ | <param> | ||
+ | <value> | ||
+ | <struct> | ||
+ | <member> | ||
+ | <name>success</name> | ||
+ | <value> | ||
+ | <boolean>0</boolean> | ||
+ | </value> | ||
+ | </member> | ||
+ | <member> | ||
+ | <name>error</name> | ||
+ | <value> | ||
+ | <string>authentication failed for Kira Komarov</string> | ||
+ | </value> | ||
+ | </member> | ||
+ | </struct> | ||
+ | </value> | ||
+ | </param> | ||
+ | </params> | ||
+ | </methodResponse> | ||
+ | |||
+ | </source> | ||
[[RemoteAdmin]] | [[RemoteAdmin]] | ||
[[RemoteAdmin:Commands]] | [[RemoteAdmin:Commands]] |
Revision as of 06:40, 22 November 2013
admin_authenticate_user remotely allows to authenticate an user remotely. This feature is part of the development branch, after the 0.7.6 OpenSim release.
Contents |
Enabling admin_authenticate_user
If not all functions are enabled, use admin_authenticate_user to enable the function in the [RemoteAdmin] section
enabled_methods = admin_authenticate_user,...
Parameters
Required Parameters
These parameters are required
parameter | Description | Values |
---|---|---|
user_firstname | first name of user | |
user_lastname | last name of user | |
user_password | and MD5 hash of the user's password | |
token_lifetime | the lifetime of the authentication token (max: 30s) |
Returned Parameters
Returned Parameters
These parameters are returned by Remote Admin
parameter | Description | Values |
---|---|---|
success | true when successful | true, false |
error | the error that occurred (ie: authentication failed messages) | |
token | the authentication token |
Error Messages
error is set to "scene does not exist" in case no scene is available.
error is set to "avatar FIRSTNAME LASTNAME does not exist" in case the avatar with FIRSTNAME LASTNAME does not exist.
error is set to "no password provided for FIRSTNAME LASTNAME" in case the call did not include a password for the avatar named FISTNAME LASTNAME.
error is set to "no token lifetime provided for FISTNAME LASTNAME" if the token parameter has been omitted from the call.
error is set to "token lifetime longer than 30s for FISTNAME LASTNAME" in case the request asked for token_lifetime larger than 30.
error is set to "no authentication module loaded" in case no authentication module could be loaded.
error is set to "authentication failed for FIRSTNAME LASTNAME" in case the authentication failed for user FISTNAME LASTNAME.
Examples
Using the wasRemoteAdmin class from and Steamworks remote admin page, a call can be made to admin_authenticate_user to authenticate the avatar Kira Komarov using Remote Admin:
<?php # include the KOS class require_once 'wasRemoteAdmin.php'; # create a new connection to the OpenSim server # with the hostname "OPENSIM" and port "10000" # using the password "password" $req = new wasRemoteAdmin('http://OPENSIM:10000', 'password'); # send the console command "show info" to OpenSim print $req->admin_authenticate_user('Kira', 'Komarov', 'mypassword', '10');
which sends the request to OpenSim and returns an XML structure documented in the following section.
Return XML
admin_authenticate_user returns an XML structure indicating whether an error occurred or if the call was successful.
Success
On a successful call to admin_authenticate_user, the following is an example of the returned XML.
<methodResponse> <params> <param> <value> <struct> <member> <name>success</name> <value> <boolean>1</boolean> </value> </member> <member> <name>token</name> <value> <string>670962bb-7942-4d66-b7dc-b669b97e842e</string> </value> </member> </struct> </value> </param> </params> </methodResponse>
Failure
On an unsuccessful call to admin_authenticate_user, the following is an example of the returned XML.
<methodResponse> <params> <param> <value> <struct> <member> <name>success</name> <value> <boolean>0</boolean> </value> </member> <member> <name>error</name> <value> <string>authentication failed for Kira Komarov</string> </value> </member> </struct> </value> </param> </params> </methodResponse>