15 * Create a WatchedItem object with the given user and title
19 function &fromUserTitle( &$user, &$title ) {
20 $wl = new WatchedItem
;
22 $wl->mTitle
=& $title;
23 $wl->id
= $user->getId();
24 # Patch (also) for email notification on page changes T.Gries/M.Arndt 11.09.2004
25 # TG patch: here we do not consider pages and their talk pages equivalent - why should we ?
26 # The change results in talk-pages not automatically included in watchlists, when their parent page is included
27 # $wl->ns = $title->getNamespace() & ~1;
28 $wl->ns
= $title->getNamespace();
30 $wl->ti
= $title->getDBkey();
35 * Returns the memcached key for this item
39 return "$wgDBname:watchlist:user:$this->id:page:$this->ns:$this->ti";
43 * Is mTitle being watched by mUser?
45 function isWatched() {
46 # Pages and their talk pages are considered equivalent for watching;
47 # remember that talk namespaces are numbered as page namespace+1.
49 $fname = 'WatchedItem::isWatched';
51 $key = $this->watchKey();
52 $iswatched = $wgMemc->get( $key );
53 if( is_integer( $iswatched ) ) return $iswatched;
55 $dbr =& wfGetDB( DB_SLAVE
);
56 $res = $dbr->select( 'watchlist', 1, array( 'wl_user' => $this->id
, 'wl_namespace' => $this->ns
,
57 'wl_title' => $this->ti
), $fname );
58 $iswatched = ($dbr->numRows( $res ) > 0) ?
1 : 0;
59 $wgMemc->set( $key, $iswatched );
67 $fname = 'WatchedItem::addWatch';
68 wfProfileIn( $fname );
70 // Use INSERT IGNORE to avoid overwriting the notification timestamp
71 // if there's already an entry for this page
72 $dbw =& wfGetDB( DB_MASTER
);
73 $dbw->insert( 'watchlist',
75 'wl_user' => $this->id
,
76 'wl_namespace' => ($this->ns
& ~
1),
77 'wl_title' => $this->ti
,
78 'wl_notificationtimestamp' => NULL
79 ), $fname, 'IGNORE' );
81 // Every single watched page needs now to be listed in watchlist;
82 // namespace:page and namespace_talk:page need separate entries:
83 $dbw->insert( 'watchlist',
85 'wl_user' => $this->id
,
86 'wl_namespace' => ($this->ns |
1 ),
87 'wl_title' => $this->ti
,
88 'wl_notificationtimestamp' => NULL
89 ), $fname, 'IGNORE' );
92 $wgMemc->set( $this->watchkey(), 1 );
93 wfProfileOut( $fname );
97 function removeWatch() {
99 $fname = 'WatchedItem::removeWatch';
102 $dbw =& wfGetDB( DB_MASTER
);
103 $dbw->delete( 'watchlist',
105 'wl_user' => $this->id
,
106 'wl_namespace' => ($this->ns
& ~
1),
107 'wl_title' => $this->ti
110 if ( $dbw->affectedRows() ) {
114 # the following code compensates the new behaviour, introduced by the
115 # enotif patch, that every single watched page needs now to be listed
116 # in watchlist namespace:page and namespace_talk:page had separate
117 # entries: clear them
118 $dbw->delete( 'watchlist',
120 'wl_user' => $this->id
,
121 'wl_namespace' => ($this->ns |
1),
122 'wl_title' => $this->ti
126 if ( $dbw->affectedRows() ) {
130 $wgMemc->set( $this->watchkey(), 0 );
136 * Check if the given title already is watched by the user, and if so
137 * add watches on a new title. To be used for page renames and such.
139 * @param Title $ot Page title to duplicate entries from, if present
140 * @param Title $nt Page title to add watches on
143 function duplicateEntries( $ot, $nt ) {
144 WatchedItem
::doDuplicateEntries( $ot->getSubjectPage(), $nt->getSubjectPage() );
145 WatchedItem
::doDuplicateEntries( $ot->getTalkPage(), $nt->getTalkPage() );
152 function doDuplicateEntries( $ot, $nt ) {
153 $fname = "WatchedItem::duplicateEntries";
154 $oldnamespace = $ot->getNamespace();
155 $newnamespace = $nt->getNamespace();
156 $oldtitle = $ot->getDBkey();
157 $newtitle = $nt->getDBkey();
159 $dbw =& wfGetDB( DB_MASTER
);
160 $res = $dbw->select( 'watchlist', 'wl_user',
161 array( 'wl_namespace' => $oldnamespace, 'wl_title' => $oldtitle ),
164 # Construct array to replace into the watchlist
166 while ( $s = $dbw->fetchObject( $res ) ) {
168 'wl_user' => $s->wl_user
,
169 'wl_namespace' => $newnamespace,
170 'wl_title' => $newtitle
173 $dbw->freeResult( $res );
175 if( empty( $values ) ) {
181 # Note that multi-row replace is very efficient for MySQL but may be inefficient for
182 # some other DBMSes, mostly due to poor simulation by us
183 $dbw->replace( 'watchlist', array(array( 'wl_user', 'wl_namespace', 'wl_title')), $values, $fname );