This project does not seem to handle request data directly as such no vulnerable execution paths were found.
include
, or for example
via PHP's auto-loading mechanism.
These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more
1 | <?php |
||
2 | |||
3 | namespace SESP; |
||
4 | |||
5 | use ArrayIterator; |
||
6 | use DatabaseLogEntry; |
||
7 | use DatabaseBase; |
||
8 | use MWTimestamp; |
||
9 | use Title; |
||
10 | use User; |
||
11 | |||
12 | class DatabaseLogReader { |
||
13 | |||
14 | /** |
||
15 | * @var array |
||
16 | */ |
||
17 | private static $titleCache = []; |
||
18 | |||
19 | /** |
||
20 | * @var DatabaseBase |
||
21 | */ |
||
22 | private $dbr; |
||
23 | |||
24 | /** |
||
25 | * @var string |
||
26 | */ |
||
27 | private $query; |
||
28 | |||
29 | /** |
||
30 | * @var string |
||
31 | */ |
||
32 | private $log; |
||
33 | |||
34 | /** |
||
35 | * @var string |
||
36 | */ |
||
37 | private $dbKey; |
||
38 | |||
39 | /** |
||
40 | * @var string |
||
41 | */ |
||
42 | private $type; |
||
43 | |||
44 | /** |
||
45 | * @since 2.0 |
||
46 | * |
||
47 | * @param DatabaseaBase $dbr injected connection |
||
48 | * @param Title|null $title |
||
49 | * @param string $type of log (default: approval) |
||
50 | */ |
||
51 | 6 | public function __construct( $dbr, Title $title = null , $type = 'approval' ) { |
|
52 | 6 | ||
53 | 6 | // Due to MW 1.31+ and MW 1.34+ |
|
54 | 6 | if ( |
|
55 | 6 | !$dbr instanceof \Wikimedia\Rdbms\IDatabase && |
|
56 | !$dbr instanceof \IDatabase && |
||
57 | !$dbr instanceof \DatabaseBase ) { |
||
58 | throw new \RuntimeException( "Invalid connection instance!" ); |
||
59 | } |
||
60 | 1 | ||
61 | 1 | $this->dbr = $dbr; |
|
62 | 1 | $this->dbKey = $title instanceof Title ? $title->getDBkey() : null; |
|
63 | $this->type = $type; |
||
64 | } |
||
65 | |||
66 | /** |
||
67 | * @since 2.0 |
||
68 | */ |
||
69 | public function clearCache() { |
||
70 | self::$titleCache = []; |
||
71 | 5 | } |
|
72 | 5 | ||
73 | /** |
||
74 | * Fetch the query parameters for later calls |
||
75 | * |
||
76 | * @since 2.0 |
||
77 | * |
||
78 | * @return array of parameters for SELECT call |
||
79 | */ |
||
80 | 4 | public function getQuery() { |
|
81 | 4 | return $this->query; |
|
82 | 4 | } |
|
83 | |||
84 | 4 | /** |
|
85 | 2 | * @since 2.0 |
|
86 | * |
||
87 | 2 | * @return User |
|
88 | */ |
||
89 | public function getUserForLogEntry() { |
||
90 | $this->init(); |
||
91 | $logLine = $this->getLog()->current(); |
||
92 | |||
93 | if ( $logLine && $logLine->user_id ) { |
||
94 | 2 | return User::newFromID( $logLine->user_id ); |
|
95 | 2 | } |
|
96 | 2 | } |
|
97 | |||
98 | 2 | /** |
|
99 | 1 | * @since 2.0 |
|
100 | * |
||
101 | 1 | * @return Timestamp |
|
102 | */ |
||
103 | public function getDateOfLogEntry() { |
||
104 | $this->init(); |
||
105 | $logLine = $this->getLog()->current(); |
||
106 | |||
107 | if ( $logLine && $logLine->log_timestamp ) { |
||
108 | 2 | return new MWTimestamp( $logLine->log_timestamp ); |
|
109 | 2 | } |
|
110 | 2 | } |
|
111 | |||
112 | 2 | /** |
|
113 | 1 | * @since 2.0 |
|
114 | * |
||
115 | 1 | * @return string |
|
116 | */ |
||
117 | public function getStatusOfLogEntry() { |
||
118 | $this->init(); |
||
119 | $logLine = $this->getLog()->current(); |
||
120 | 4 | ||
121 | if ( $logLine && $logLine->log_action ) { |
||
122 | 4 | return $logLine->log_action; |
|
123 | 3 | } |
|
124 | } |
||
125 | |||
126 | 4 | /** |
|
127 | 3 | * Take care of loading from the cache or filling the query. |
|
128 | */ |
||
129 | 3 | private function init() { |
|
130 | 3 | ||
131 | 3 | if ( $this->query ) { |
|
132 | 3 | return; |
|
133 | 3 | } |
|
134 | 3 | ||
135 | 3 | if ( !isset( self::$titleCache[ $this->dbKey ] ) ) { |
|
136 | 1 | $this->query = DatabaseLogEntry::getSelectQueryData(); |
|
137 | 1 | ||
138 | 1 | $this->query['conds'] = [ |
|
139 | 'log_type' => $this->type, |
||
140 | 'log_title' => $this->dbKey |
||
141 | 4 | ]; |
|
142 | $this->query['options'] = [ 'ORDER BY' => 'log_timestamp desc' ]; |
||
143 | self::$titleCache[ $this->dbKey ] = $this; |
||
144 | } else { |
||
145 | $cache = self::$titleCache[ $this->dbKey ]; |
||
146 | $this->query = $cache->getQuery(); |
||
147 | $this->log = $cache->getLog(); |
||
148 | } |
||
149 | 4 | ||
150 | 4 | } |
|
151 | |||
152 | 3 | /** |
|
153 | * Fetch the results using our conditions |
||
154 | 3 | * |
|
155 | 3 | * @return IResultWrapper |
|
156 | 3 | * @throws DBError |
|
157 | 3 | */ |
|
158 | 3 | private function getLog() { |
|
159 | 3 | if ( !$this->log ) { |
|
160 | 3 | ||
161 | 3 | $query = $this->getQuery(); |
|
162 | |||
163 | 3 | $this->log = $this->dbr->select( |
|
164 | $query['tables'], |
||
165 | $query['fields'], |
||
166 | $query['conds'], |
||
167 | __METHOD__, |
||
168 | $query['options'], |
||
169 | $query['join_conds'] |
||
170 | ); |
||
171 | |||
172 | 3 | if ( $this->log === null ) { |
|
173 | $this->log = new ArrayIterator( |
||
0 ignored issues
–
show
|
|||
174 | 4 | [ (object)[ |
|
175 | 'user_id' => null, |
||
176 | 'log_timestamp' => null, |
||
177 | 'log_action' => null |
||
178 | ] ] |
||
179 | ); |
||
180 | } |
||
181 | } |
||
182 | |||
183 | return $this->log; |
||
184 | } |
||
185 | |||
186 | } |
||
187 |
Our type inference engine has found an assignment to a property that is incompatible with the declared type of that property.
Either this assignment is in error or the assigned type should be added to the documentation/type hint for that property..