-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathDAOAccessControl.php
130 lines (120 loc) · 3.56 KB
/
DAOAccessControl.php
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<?php
/**
* (c) Aaron Schulz 2013, GPL
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
* http://www.gnu.org/copyleft/gpl.html
*/
namespace MediaWiki\Extension\OAuth\Control;
use LogicException;
use MediaWiki\Context\ContextSource;
use MediaWiki\Context\IContextSource;
use MediaWiki\Extension\OAuth\Backend\MWOAuthDAO;
use MediaWiki\Message\Message;
/**
* Wrapper of an MWOAuthDAO that handles authorization to view fields
*/
class DAOAccessControl extends ContextSource {
/** @var MWOAuthDAO */
protected $dao;
/**
* @param MWOAuthDAO $dao
* @param IContextSource $context
*/
final protected function __construct( MWOAuthDAO $dao, IContextSource $context ) {
$this->dao = $dao;
$this->setContext( $context );
}
/**
* @param MWOAuthDAO|false|null $dao
* @param IContextSource $context
* @throws LogicException
* @return static|null|false
*/
final public static function wrap( $dao, IContextSource $context ) {
if ( $dao instanceof MWOAuthDAO ) {
return new static( $dao, $context );
} elseif ( $dao === null || $dao === false ) {
return $dao;
} else {
throw new LogicException( "Expected MWOAuthDAO object, null, or false." );
}
}
/**
* @return MWOAuthDAO
*/
public function getDAO() {
return $this->dao;
}
/**
* Helper to make return value of get() safe for wikitext
*
* @param Message|string $value
* @return string For use in wikitext
* @param-taint $value escapes_escaped
*/
final public function escapeForWikitext( $value ) {
if ( $value instanceof Message ) {
return wfEscapeWikiText( $value->plain() );
} else {
return wfEscapeWikiText( $value );
}
}
/**
* Helper to make return value of get() safe for HTML
*
* @param Message|string $value
* @return string HTML escaped
* @param-taint $value escapes_escaped
*/
final public function escapeForHtml( $value ) {
if ( $value instanceof Message ) {
return $value->parse();
} else {
return htmlspecialchars( $value );
}
}
/**
* Get the value of a field, taking into account user permissions.
* An appropriate Message will be returned if access is denied.
*
* @param string $name
* @param callback|null $sCallback Optional callback to apply to result on access success
* @return mixed Returns a Message on access failure
*/
final public function get( $name, $sCallback = null ) {
$msg = $this->dao->userCanAccess( $name, $this->getContext() );
if ( $msg !== true ) {
// should be a Message object
return $msg;
} else {
$value = $this->dao->get( $name );
return $sCallback ? $sCallback( $value ) : $value;
}
}
/**
* Check whether the user can access the given field(s).
* @param string|array $names A field name or a list of names.
* @return bool
*/
final public function userCanAccess( $names ) {
foreach ( (array)$names as $name ) {
if ( !$this->dao->userCanAccess( $name, $this->getContext() ) ) {
return false;
}
}
return true;
}
}