blob: ae45b3ee22abdc830e54a5eeb1f908484832a6c5 (
plain) (
blame)
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
<?php
namespace Sabre\HTTP\Auth;
use Sabre\HTTP\RequestInterface;
use Sabre\HTTP\ResponseInterface;
/**
* HTTP Authentication base class.
*
* This class provides some common functionality for the various base classes.
*
* @copyright Copyright (C) fruux GmbH (https://fruux.com/)
* @author Evert Pot (http://evertpot.com/)
* @license http://sabre.io/license/ Modified BSD License
*/
abstract class AbstractAuth {
/**
* Authentication realm
*
* @var string
*/
protected $realm;
/**
* Request object
*
* @var RequestInterface
*/
protected $request;
/**
* Response object
*
* @var ResponseInterface
*/
protected $response;
/**
* Creates the object
*
* @param string $realm
* @return void
*/
function __construct($realm = 'SabreTooth', RequestInterface $request, ResponseInterface $response) {
$this->realm = $realm;
$this->request = $request;
$this->response = $response;
}
/**
* This method sends the needed HTTP header and statuscode (401) to force
* the user to login.
*
* @return void
*/
abstract function requireLogin();
/**
* Returns the HTTP realm
*
* @return string
*/
function getRealm() {
return $this->realm;
}
}
|