]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/accesstoken.php
76bd40473a954729f43fd2f53bbc852292b35446
[quix0rs-gnu-social.git] / actions / accesstoken.php
1 <?php
2 /**
3  * Access token class
4  *
5  * PHP version 5
6  *
7  * @category Action
8  * @package  StatusNet
9  * @author   Evan Prodromou <evan@status.net>
10  * @author   Robin Millette <millette@status.net>
11  * @license  http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
12  * @link     http://status.net/
13  *
14  * StatusNet - the distributed open-source microblogging tool
15  * Copyright (C) 2008, 2009, StatusNet, Inc.
16  *
17  * This program is free software: you can redistribute it and/or modify
18  * it under the terms of the GNU Affero General Public License as published by
19  * the Free Software Foundation, either version 3 of the License, or
20  * (at your option) any later version.
21  *
22  * This program is distributed in the hope that it will be useful,
23  * but WITHOUT ANY WARRANTY; without even the implied warranty of
24  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
25  * GNU Affero General Public License for more details.
26  *
27  * You should have received a copy of the GNU Affero General Public License
28  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
29  */
30
31 if (!defined('STATUSNET') && !defined('LACONICA')) {
32     exit(1);
33 }
34
35 require_once INSTALLDIR.'/extlib/libomb/service_provider.php';
36 require_once INSTALLDIR.'/lib/omb.php';
37
38 /**
39  * Access token class
40  *
41  * @category Action
42  * @package  StatusNet
43  * @author   Evan Prodromou <evan@status.net>
44  * @author   Robin Millette <millette@status.net>
45  * @license  http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
46  * @link     http://status.net/
47  */
48 class AccesstokenAction extends Action
49 {
50     /**
51      * Class handler
52      *
53      * @param array $args query arguments
54      *
55      * @return nothing
56      *
57      **/
58     function handle($args)
59     {
60         parent::handle($args);
61         try {
62             $srv = new OMB_Service_Provider(null, omb_oauth_datastore(),
63                                             omb_oauth_server());
64             $srv->writeAccessToken();
65         } catch (Exception $e) {
66             $this->serverError($e->getMessage());
67         }
68     }
69 }
70 ?>