ActivityUpdateJob.php 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. <?php
  2. /**
  3. * This program is free software; you can redistribute it and/or modify
  4. * it under the terms of the GNU General Public License as published by
  5. * the Free Software Foundation; either version 2 of the License, or
  6. * (at your option) any later version.
  7. *
  8. * This program is distributed in the hope that it will be useful,
  9. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. * GNU General Public License for more details.
  12. *
  13. * You should have received a copy of the GNU General Public License along
  14. * with this program; if not, write to the Free Software Foundation, Inc.,
  15. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  16. * http://www.gnu.org/copyleft/gpl.html
  17. *
  18. * @file
  19. * @ingroup JobQueue
  20. */
  21. use MediaWiki\Linker\LinkTarget;
  22. /**
  23. * Job for updating user activity like "last viewed" timestamps
  24. *
  25. * Job parameters include:
  26. * - type: one of (updateWatchlistNotification) [required]
  27. * - userid: affected user ID [required]
  28. * - notifTime: timestamp to set watchlist entries to [required]
  29. * - curTime: UNIX timestamp of the event that triggered this job [required]
  30. *
  31. * @ingroup JobQueue
  32. * @since 1.26
  33. */
  34. class ActivityUpdateJob extends Job {
  35. function __construct( LinkTarget $title, array $params ) {
  36. $title = Title::newFromLinkTarget( $title );
  37. parent::__construct( 'activityUpdateJob', $title, $params );
  38. static $required = [ 'type', 'userid', 'notifTime', 'curTime' ];
  39. $missing = implode( ', ', array_diff( $required, array_keys( $this->params ) ) );
  40. if ( $missing != '' ) {
  41. throw new InvalidArgumentException( "Missing parameter(s) $missing" );
  42. }
  43. $this->removeDuplicates = true;
  44. }
  45. public function run() {
  46. if ( $this->params['type'] === 'updateWatchlistNotification' ) {
  47. $this->updateWatchlistNotification();
  48. } else {
  49. throw new InvalidArgumentException( "Invalid 'type' '{$this->params['type']}'." );
  50. }
  51. return true;
  52. }
  53. protected function updateWatchlistNotification() {
  54. $casTimestamp = $this->params['notifTime'] ?? $this->params['curTime'];
  55. $dbw = wfGetDB( DB_MASTER );
  56. $dbw->update( 'watchlist',
  57. [
  58. 'wl_notificationtimestamp' => $dbw->timestampOrNull( $this->params['notifTime'] )
  59. ],
  60. [
  61. 'wl_user' => $this->params['userid'],
  62. 'wl_namespace' => $this->title->getNamespace(),
  63. 'wl_title' => $this->title->getDBkey(),
  64. // Add a "check and set" style comparison to handle conflicts.
  65. // The inequality always avoids updates when the current value
  66. // is already NULL per ANSI SQL. This is desired since NULL means
  67. // that the user is "caught up" on edits already. When the field
  68. // is non-NULL, make sure not to set it back in time or set it to
  69. // NULL when newer revisions were in fact added to the page.
  70. 'wl_notificationtimestamp < ' . $dbw->addQuotes( $dbw->timestamp( $casTimestamp ) )
  71. ],
  72. __METHOD__
  73. );
  74. }
  75. }