mirror of
https://github.com/friendica/friendica
synced 2025-04-19 13:50:15 +00:00
Rename to AccountManagementControlDocument
This commit is contained in:
parent
1460e417c1
commit
08d4c7f1a9
2 changed files with 2 additions and 4 deletions
65
src/Module/AccountManagementControlDocument.php
Normal file
65
src/Module/AccountManagementControlDocument.php
Normal file
|
@ -0,0 +1,65 @@
|
|||
<?php
|
||||
|
||||
namespace Friendica\Module;
|
||||
|
||||
use Friendica\BaseModule;
|
||||
|
||||
/**
|
||||
* Static definition for the Firefox Account Manager
|
||||
*
|
||||
* @see https://wiki.mozilla.org/Labs/Weave/Identity/Account_Manager/Spec/3#Contents_of_the_Account_Management_Control_Document
|
||||
*/
|
||||
class AccountManagementControlDocument extends BaseModule
|
||||
{
|
||||
public static function rawContent()
|
||||
{
|
||||
$output = [
|
||||
'version' => 1,
|
||||
'sessionstatus' => [
|
||||
'method' => 'GET',
|
||||
'path' => '/session',
|
||||
],
|
||||
'auth-methods' => [
|
||||
'username-password-form' => [
|
||||
'connect' => [
|
||||
'method' => 'POST',
|
||||
'path' => '/login',
|
||||
'params' => [
|
||||
'username' => 'login-name',
|
||||
'password' => 'password',
|
||||
],
|
||||
'onsuccess' => [
|
||||
'action' => 'reload',
|
||||
],
|
||||
],
|
||||
'disconnect' => [
|
||||
'method' => 'GET',
|
||||
'path' => '/logout',
|
||||
],
|
||||
],
|
||||
],
|
||||
'methods' => [
|
||||
'username-password-form' => [
|
||||
'connect' => [
|
||||
'method' => 'POST',
|
||||
'path' => '/login',
|
||||
'params' => [
|
||||
'username' => 'login-name',
|
||||
'password' => 'password',
|
||||
],
|
||||
'onsuccess' => [
|
||||
'action' => 'reload',
|
||||
],
|
||||
],
|
||||
'disconnect' => [
|
||||
'method' => 'GET',
|
||||
'path' => '/logout',
|
||||
],
|
||||
],
|
||||
],
|
||||
];
|
||||
|
||||
echo json_encode($output);
|
||||
exit();
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue