MediaWiki master
JobSpecification.php
Go to the documentation of this file.
1<?php
24
44 protected $type;
45
47 protected $params;
48
50 protected $page;
51
53 protected $opts;
54
63 public function __construct(
64 $type, array $params, array $opts = [], ?PageReference $page = null
65 ) {
66 $params += [
67 'requestId' => Telemetry::getInstance()->getRequestId(),
68 ];
69 $this->validateParams( $params );
70 $this->validateParams( $opts );
71
72 $this->type = $type;
73 if ( $page ) {
74 // Make sure JobQueue classes can pull the title from parameters alone
75 if ( $page->getDBkey() !== '' ) {
76 $params += [
77 'namespace' => $page->getNamespace(),
78 'title' => $page->getDBkey()
79 ];
80 }
81 } else {
82 // We aim to remove the page from job specification and all we need
83 // is namespace/dbkey, so use LOCAL no matter what.
84 $page = PageReferenceValue::localReference( NS_SPECIAL, 'Badtitle/' . __CLASS__ );
85 }
86 $this->params = $params;
87 $this->page = $page;
88 $this->opts = $opts;
89 }
90
94 protected function validateParams( array $params ) {
95 foreach ( $params as $p => $v ) {
96 if ( is_array( $v ) ) {
97 $this->validateParams( $v );
98 } elseif ( !is_scalar( $v ) && $v !== null ) {
99 throw new UnexpectedValueException( "Job parameter $p is not JSON serializable." );
100 }
101 }
102 }
103
104 public function getType() {
105 return $this->type;
106 }
107
108 public function getParams() {
109 return $this->params;
110 }
111
112 public function getReleaseTimestamp() {
113 return isset( $this->params['jobReleaseTimestamp'] )
114 ? wfTimestampOrNull( TS_UNIX, $this->params['jobReleaseTimestamp'] )
115 : null;
116 }
117
118 public function ignoreDuplicates() {
119 return !empty( $this->opts['removeDuplicates'] );
120 }
121
122 public function getDeduplicationInfo() {
123 $info = [
124 'type' => $this->getType(),
125 'params' => $this->getParams()
126 ];
127 if ( is_array( $info['params'] ) ) {
128 // Identical jobs with different "root" jobs should count as duplicates
129 unset( $info['params']['rootJobSignature'] );
130 unset( $info['params']['rootJobTimestamp'] );
131 // Likewise for jobs with different delay times
132 unset( $info['params']['jobReleaseTimestamp'] );
133 // Identical jobs from different requests should count as duplicates
134 unset( $info['params']['requestId'] );
135 if ( isset( $this->opts['removeDuplicatesIgnoreParams'] ) ) {
136 foreach ( $this->opts['removeDuplicatesIgnoreParams'] as $field ) {
137 unset( $info['params'][$field] );
138 }
139 }
140 }
141
142 return $info;
143 }
144
145 public function getRootJobParams() {
146 return [
147 'rootJobSignature' => $this->params['rootJobSignature'] ?? null,
148 'rootJobTimestamp' => $this->params['rootJobTimestamp'] ?? null
149 ];
150 }
151
152 public function hasRootJobParams() {
153 return isset( $this->params['rootJobSignature'] )
154 && isset( $this->params['rootJobTimestamp'] );
155 }
156
157 public function isRootJob() {
158 return $this->hasRootJobParams() && !empty( $this->params['rootJobIsSelf'] );
159 }
160
166 public function toSerializableArray() {
167 wfDeprecated( __METHOD__, '1.41' );
168 return [
169 'type' => $this->type,
170 'params' => $this->params,
171 'opts' => $this->opts,
172 'title' => [
173 'ns' => $this->page->getNamespace(),
174 'key' => $this->page->getDBkey()
175 ]
176 ];
177 }
178
184 public static function newFromArray( array $map ) {
185 return new self(
186 $map['type'],
187 $map['params'],
188 $map['opts'],
189 PageReferenceValue::localReference( $map['title']['ns'], $map['title']['key'] )
190 );
191 }
192}
const NS_SPECIAL
Definition Defines.php:54
wfTimestampOrNull( $outputtype=TS_UNIX, $ts=null)
Return a formatted timestamp, or null if input is null.
wfDeprecated( $function, $version=false, $component=false, $callerOffset=2)
Logs a warning that a deprecated feature was used.
array $params
The job parameters.
Job queue task description base code.
PageReference $page
__construct( $type, array $params, array $opts=[], ?PageReference $page=null)
array $params
Array of job parameters or false if none.
validateParams(array $params)
static newFromArray(array $map)
getDeduplicationInfo()
Subclasses may need to override this to make duplication detection work.
Service for handling telemetry data.
Definition Telemetry.php:29
Immutable value object representing a page reference.
Interface for serializable objects that describe a job queue task.
Interface for objects (potentially) representing a page that can be viewable and linked to on a wiki.
getNamespace()
Returns the page's namespace number.
getDBkey()
Get the page title in DB key form.