blob: 8a0071dbfda8db6a830795a8ab7d2cb326882bda (
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
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
|
<?php
namespace SMW\MediaWiki;
use SMW\PageInfo;
use WikiPage;
use Revision;
use User;
/**
* Provide access to MediaWiki objects relevant for the predefined property
* annotation process
*
* @ingroup SMW
*
* @license GNU GPL v2+
* @since 1.9
*
* @author mwjames
*/
class PageInfoProvider implements PageInfo {
/**
* @var WikiPage
*/
private $wikiPage = null;
/**
* @var Revision
*/
private $revision = null;
/**
* @var User
*/
private $user = null;
/**
* @since 1.9
*
* @param WikiPage $wikiPage
* @param Revision|null $revision
* @param User|null $user
*/
public function __construct( WikiPage $wikiPage, Revision $revision = null, User $user = null ) {
$this->wikiPage = $wikiPage;
$this->revision = $revision;
$this->user = $user;
}
/**
* @since 1.9
*
* @return integer
*/
public function getModificationDate() {
return $this->wikiPage->getTimestamp();
}
/**
* @note getFirstRevision() is expensive as it initiates a read on the
* revision table which is not cached
*
* @since 1.9
*
* @return integer
*/
public function getCreationDate() {
return $this->wikiPage->getTitle()->getFirstRevision()->getTimestamp();
}
/**
* @note Using isNewPage() is expensive due to access to the database
*
* @since 1.9
*
* @return boolean
*/
public function isNewPage() {
if ( $this->isFilePage() ) {
return isset( $this->wikiPage->smwFileReUploadStatus ) ? !$this->wikiPage->smwFileReUploadStatus : false;
}
if ( $this->revision ) {
return $this->revision->getParentId() === null;
}
return $this->wikiPage->getRevision()->getParentId() === null;
}
/**
* @since 1.9
*
* @return Title
*/
public function getLastEditor() {
return $this->user ? $this->user->getUserPage() : null;
}
/**
* @since 1.9.1
*
* @return boolean
*/
public function isFilePage() {
return $this->wikiPage instanceof \WikiFilePage;
}
/**
* @since 1.9.1
*
* @return string|null
*/
public function getMediaType() {
return $this->isFilePage() ? $this->wikiPage->getFile()->getMediaType() : null;
}
/**
* @since 1.9.1
*
* @return string|null
*/
public function getMimeType() {
return $this->isFilePage() ? $this->wikiPage->getFile()->getMimeType() : null;
}
}
|