summaryrefslogtreecommitdiff
path: root/app/Core/Security/OAuthAuthenticationProviderInterface.php
blob: c32339e07bbc789874ccdae875f47a0ee9b3e0d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<?php

namespace Kanboard\Core\Security;

/**
 * OAuth2 Authentication Provider Interface
 *
 * @package  security
 * @author   Frederic Guillot
 */
interface OAuthAuthenticationProviderInterface extends AuthenticationProviderInterface
{
    /**
     * Get user object
     *
     * @access public
     * @return UserProviderInterface
     */
    public function getUser();

    /**
     * Unlink user
     *
     * @access public
     * @param  integer $userId
     * @return bool
     */
    public function unlink($userId);

    /**
     * Get configured OAuth2 service
     *
     * @access public
     * @return Kanboard\Core\Http\OAuth2
     */
    public function getService();

    /**
     * Set OAuth2 code
     *
     * @access public
     * @param  string  $code
     * @return OAuthAuthenticationProviderInterface
     */
    public function setCode($code);
}