MediaWiki  REL1_31
RevDelArchiveItem.php
Go to the documentation of this file.
1 <?php
26  public function __construct( $list, $row ) {
28  $this->revision = Revision::newFromArchiveRow( $row,
29  [ 'page' => $this->list->title->getArticleID() ] );
30  }
31 
32  public function getIdField() {
33  return 'ar_timestamp';
34  }
35 
36  public function getTimestampField() {
37  return 'ar_timestamp';
38  }
39 
40  public function getAuthorIdField() {
41  return 'ar_user';
42  }
43 
44  public function getAuthorNameField() {
45  return 'ar_user_text';
46  }
47 
48  public function getAuthorActorField() {
49  return 'ar_actor';
50  }
51 
52  public function getId() {
53  # Convert DB timestamp to MW timestamp
54  return $this->revision->getTimestamp();
55  }
56 
57  public function setBits( $bits ) {
58  $dbw = wfGetDB( DB_MASTER );
59  $dbw->update( 'archive',
60  [ 'ar_deleted' => $bits ],
61  [
62  'ar_namespace' => $this->list->title->getNamespace(),
63  'ar_title' => $this->list->title->getDBkey(),
64  // use timestamp for index
65  'ar_timestamp' => $this->row->ar_timestamp,
66  'ar_rev_id' => $this->row->ar_rev_id,
67  'ar_deleted' => $this->getBits()
68  ],
69  __METHOD__ );
70 
71  return (bool)$dbw->affectedRows();
72  }
73 
74  protected function getRevisionLink() {
75  $date = $this->list->getLanguage()->userTimeAndDate(
76  $this->revision->getTimestamp(), $this->list->getUser() );
77 
78  if ( $this->isDeleted() && !$this->canViewContent() ) {
79  return htmlspecialchars( $date );
80  }
81 
82  return $this->getLinkRenderer()->makeLink(
83  SpecialPage::getTitleFor( 'Undelete' ),
84  $date,
85  [],
86  [
87  'target' => $this->list->title->getPrefixedText(),
88  'timestamp' => $this->revision->getTimestamp()
89  ]
90  );
91  }
92 
93  protected function getDiffLink() {
94  if ( $this->isDeleted() && !$this->canViewContent() ) {
95  return $this->list->msg( 'diff' )->escaped();
96  }
97 
98  return $this->getLinkRenderer()->makeLink(
99  SpecialPage::getTitleFor( 'Undelete' ),
100  $this->list->msg( 'diff' )->text(),
101  [],
102  [
103  'target' => $this->list->title->getPrefixedText(),
104  'diff' => 'prev',
105  'timestamp' => $this->revision->getTimestamp()
106  ]
107  );
108  }
109 }
Revision\newFromArchiveRow
static newFromArchiveRow( $row, $overrides=[])
Make a fake revision object from an archive table row.
Definition: Revision.php:167
RevDelRevisionItem\isDeleted
isDeleted()
Definition: RevDelRevisionItem.php:99
RevDelArchiveItem\getId
getId()
Get the ID, as it would appear in the ids URL parameter.
Definition: RevDelArchiveItem.php:52
RevDelArchiveItem\getAuthorActorField
getAuthorActorField()
Get the DB field name storing actor ids.
Definition: RevDelArchiveItem.php:48
RevisionItemBase\__construct
__construct( $list, $row)
Definition: RevisionList.php:165
SpecialPage\getTitleFor
static getTitleFor( $name, $subpage=false, $fragment='')
Get a localised Title object for a specified special page name If you don't need a full Title object,...
Definition: SpecialPage.php:82
RevDelArchiveItem\getIdField
getIdField()
Get the DB field name associated with the ID list.
Definition: RevDelArchiveItem.php:32
RevDelArchiveItem\__construct
__construct( $list, $row)
Definition: RevDelArchiveItem.php:26
php
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition: injection.txt:37
RevisionItemBase\$list
RevisionListBase $list
The parent.
Definition: RevisionList.php:156
RevDelRevisionItem\canViewContent
canViewContent()
Returns true if the current user can view the item text/file.
Definition: RevDelRevisionItem.php:58
RevisionItemBase\getLinkRenderer
getLinkRenderer()
Returns an instance of LinkRenderer.
Definition: RevisionList.php:300
RevDelArchiveItem\getAuthorIdField
getAuthorIdField()
Get the DB field name storing user ids.
Definition: RevDelArchiveItem.php:40
wfGetDB
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
Definition: GlobalFunctions.php:2812
DB_MASTER
const DB_MASTER
Definition: defines.php:29
list
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
RevDelArchiveItem
Item class for a archive table row.
Definition: RevDelArchiveItem.php:25
RevisionItemBase\$row
$row
The database result row.
Definition: RevisionList.php:159
RevDelArchiveItem\getTimestampField
getTimestampField()
Get the DB field name storing timestamps.
Definition: RevDelArchiveItem.php:36
RevDelRevisionItem
Item class for a live revision table row.
Definition: RevDelRevisionItem.php:25
RevDelArchiveItem\setBits
setBits( $bits)
Set the visibility of the item.
Definition: RevDelArchiveItem.php:57
RevDelArchiveItem\getRevisionLink
getRevisionLink()
Get the HTML link to the revision text.
Definition: RevDelArchiveItem.php:74
RevDelArchiveItem\getDiffLink
getDiffLink()
Get the HTML link to the diff.
Definition: RevDelArchiveItem.php:93
RevDelArchiveItem\getAuthorNameField
getAuthorNameField()
Get the DB field name storing user names.
Definition: RevDelArchiveItem.php:44