MediaWiki REL1_33
RevDelRevisionItem.php
Go to the documentation of this file.
1<?php
27 public $revision;
28
29 public function __construct( $list, $row ) {
30 parent::__construct( $list, $row );
31 $this->revision = static::initRevision( $list, $row );
32 }
33
41 protected static function initRevision( $list, $row ) {
42 return new Revision( $row );
43 }
44
45 public function getIdField() {
46 return 'rev_id';
47 }
48
49 public function getTimestampField() {
50 return 'rev_timestamp';
51 }
52
53 public function getAuthorIdField() {
54 return 'rev_user';
55 }
56
57 public function getAuthorNameField() {
58 return 'rev_user_text';
59 }
60
61 public function getAuthorActorField() {
62 return 'rev_actor';
63 }
64
65 public function canView() {
66 return $this->revision->userCan( Revision::DELETED_RESTRICTED, $this->list->getUser() );
67 }
68
69 public function canViewContent() {
70 return $this->revision->userCan( Revision::DELETED_TEXT, $this->list->getUser() );
71 }
72
73 public function getBits() {
74 return $this->revision->getVisibility();
75 }
76
77 public function setBits( $bits ) {
78 $dbw = wfGetDB( DB_MASTER );
79 // Update revision table
80 $dbw->update( 'revision',
81 [ 'rev_deleted' => $bits ],
82 [
83 'rev_id' => $this->revision->getId(),
84 'rev_page' => $this->revision->getPage(),
85 'rev_deleted' => $this->getBits() // cas
86 ],
87 __METHOD__
88 );
89 if ( !$dbw->affectedRows() ) {
90 // Concurrent fail!
91 return false;
92 }
93 // Update recentchanges table
94 $dbw->update( 'recentchanges',
95 [
96 'rc_deleted' => $bits,
97 'rc_patrolled' => RecentChange::PRC_AUTOPATROLLED
98 ],
99 [
100 'rc_this_oldid' => $this->revision->getId(), // condition
101 // non-unique timestamp index
102 'rc_timestamp' => $dbw->timestamp( $this->revision->getTimestamp() ),
103 ],
104 __METHOD__
105 );
106
107 return true;
108 }
109
110 public function isDeleted() {
111 return $this->revision->isDeleted( Revision::DELETED_TEXT );
112 }
113
114 public function isHideCurrentOp( $newBits ) {
115 return ( $newBits & Revision::DELETED_TEXT )
116 && $this->list->getCurrent() == $this->getId();
117 }
118
124 protected function getRevisionLink() {
125 $date = $this->list->getLanguage()->userTimeAndDate(
126 $this->revision->getTimestamp(), $this->list->getUser() );
127
128 if ( $this->isDeleted() && !$this->canViewContent() ) {
129 return htmlspecialchars( $date );
130 }
131
132 return $this->getLinkRenderer()->makeKnownLink(
133 $this->list->title,
134 $date,
135 [],
136 [
137 'oldid' => $this->revision->getId(),
138 'unhide' => 1
139 ]
140 );
141 }
142
148 protected function getDiffLink() {
149 if ( $this->isDeleted() && !$this->canViewContent() ) {
150 return $this->list->msg( 'diff' )->escaped();
151 } else {
152 return $this->getLinkRenderer()->makeKnownLink(
153 $this->list->title,
154 $this->list->msg( 'diff' )->text(),
155 [],
156 [
157 'diff' => $this->revision->getId(),
158 'oldid' => 'prev',
159 'unhide' => 1
160 ]
161 );
162 }
163 }
164
169 public function getHTML() {
170 $difflink = $this->list->msg( 'parentheses' )
171 ->rawParams( $this->getDiffLink() )->escaped();
172 $revlink = $this->getRevisionLink();
173 $userlink = Linker::revUserLink( $this->revision );
174 $comment = Linker::revComment( $this->revision );
175 if ( $this->isDeleted() ) {
176 $revlink = "<span class=\"history-deleted\">$revlink</span>";
177 }
178 $content = "$difflink $revlink $userlink $comment";
179 $attribs = [];
180 $tags = $this->getTags();
181 if ( $tags ) {
182 list( $tagSummary, $classes ) = ChangeTags::formatSummaryRow(
183 $tags,
184 'revisiondelete',
185 $this->list->getContext()
186 );
187 $content .= " $tagSummary";
188 $attribs['class'] = implode( ' ', $classes );
189 }
190 return Xml::tags( 'li', $attribs, $content );
191 }
192
196 public function getTags() {
197 return $this->row->ts_tags;
198 }
199
200 public function getApiData( ApiResult $result ) {
202 $user = $this->list->getUser();
203 $ret = [
204 'id' => $rev->getId(),
205 'timestamp' => wfTimestamp( TS_ISO_8601, $rev->getTimestamp() ),
206 'userhidden' => (bool)$rev->isDeleted( Revision::DELETED_USER ),
207 'commenthidden' => (bool)$rev->isDeleted( Revision::DELETED_COMMENT ),
208 'texthidden' => (bool)$rev->isDeleted( Revision::DELETED_TEXT ),
209 ];
210 if ( $rev->userCan( Revision::DELETED_USER, $user ) ) {
211 $ret += [
212 'userid' => $rev->getUser( Revision::FOR_THIS_USER ),
213 'user' => $rev->getUserText( Revision::FOR_THIS_USER ),
214 ];
215 }
216 if ( $rev->userCan( Revision::DELETED_COMMENT, $user ) ) {
217 $ret += [
218 'comment' => $rev->getComment( Revision::FOR_THIS_USER ),
219 ];
220 }
221
222 return $ret;
223 }
224}
and that you know you can do these things To protect your we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights These restrictions translate to certain responsibilities for you if you distribute copies of the or if you modify it For if you distribute copies of such a whether gratis or for a you must give the recipients all the rights that you have You must make sure that receive or can get the source code And you must show them these terms so they know their rights We protect your rights with two and(2) offer you this license which gives you legal permission to copy
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
wfTimestamp( $outputtype=TS_UNIX, $ts=0)
Get a timestamp string in one of various formats.
This class represents the result of the API operations.
Definition ApiResult.php:35
static formatSummaryRow( $tags, $page, IContextSource $context=null)
Creates HTML for the given tags.
static revComment(Revision $rev, $local=false, $isPublic=false, $useParentheses=true)
Wrap and format the given revision's comment block, if the current user is allowed to view it.
Definition Linker.php:1510
static revUserLink( $rev, $isPublic=false)
Generate a user link if the current user is allowed to view it.
Definition Linker.php:1063
Abstract base class for deletable items.
Item class for a live revision table row.
setBits( $bits)
Set the visibility of the item.
canViewContent()
Returns true if the current user can view the item text/file.
getTimestampField()
Get the DB field name storing timestamps.
canView()
Returns true if the current user can view the item.
getAuthorActorField()
Get the DB field name storing actor ids.
getBits()
Get the current deletion bitfield value.
getAuthorNameField()
Get the DB field name storing user names.
getApiData(ApiResult $result)
Get the return information about the revision for the API.
getAuthorIdField()
Get the DB field name storing user ids.
getRevisionLink()
Get the HTML link to the revision text.
isHideCurrentOp( $newBits)
Returns true if the item is "current", and the operation to set the given bits can't be executed for ...
getIdField()
Get the DB field name associated with the ID list.
getDiffLink()
Get the HTML link to the diff.
static initRevision( $list, $row)
Create revision object from $row sourced from $list.
$row
The database result row.
RevisionListBase $list
The parent.
getId()
Get the ID, as it would appear in the ids URL parameter.
getLinkRenderer()
Returns an instance of LinkRenderer.
const DELETED_USER
Definition Revision.php:48
const DELETED_TEXT
Definition Revision.php:46
const DELETED_RESTRICTED
Definition Revision.php:49
const DELETED_COMMENT
Definition Revision.php:47
const FOR_THIS_USER
Definition Revision.php:55
deferred txt A few of the database updates required by various functions here can be deferred until after the result page is displayed to the user For updating the view updating the linked to tables after a etc PHP does not yet have any way to tell the server to actually return and disconnect while still running these but it might have such a feature in the future We handle these by creating a deferred update object and putting those objects on a global list
Definition deferred.txt:11
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses & $ret
Definition hooks.txt:2003
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses just before the function returns a value If you return an< a > element with HTML attributes $attribs and contents $html will be returned If you return $ret will be returned and may include noclasses after processing & $attribs
Definition hooks.txt:2012
presenting them properly to the user as errors is done by the caller return true use this to change the list i e etc $rev
Definition hooks.txt:1779
$content
const DB_MASTER
Definition defines.php:26