summaryrefslogtreecommitdiff
blob: 4c3716b901a03de771e37838b4e21e5d2b88d4a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<?php

use MediaWiki\MediaWikiServices;

class TranslateSandboxEmailJob extends Job {

	/**
	 * @param array $params
	 * @return self
	 */
	public static function newJob( array $params ) {
		return new self( Title::newMainPage(), $params );
	}

	/**
	 * @param Title $title
	 * @param array $params
	 */
	public function __construct( $title, $params ) {
		parent::__construct( __CLASS__, $title, $params );
	}

	public function run() {
		$services = MediaWikiServices::getInstance();
		if ( is_callable( [ $services, 'getEmailer' ] ) ) {
			$status = $services
				->getEmailer()
				->send(
					[ $this->params['to'] ],
					$this->params['from'],
					$this->params['subj'],
					$this->params['body'],
					null,
					[ 'replyTo' => $this->params['replyto'] ]
				);
		} else {
			$status = UserMailer::send(
				$this->params['to'],
				$this->params['from'],
				$this->params['subj'],
				$this->params['body'],
				[ 'replyTo' => $this->params['replyto'] ]
			);
		}

		$isOK = $status->isOK();

		if ( $isOK && $this->params['emailType'] === 'reminder' ) {
			$user = User::newFromId( $this->params['user'] );

			$reminders = $user->getOption( 'translate-sandbox-reminders' );
			$reminders = $reminders ? explode( '|', $reminders ) : [];
			$reminders[] = wfTimestamp();
			$user->setOption( 'translate-sandbox-reminders', implode( '|', $reminders ) );

			$reminders = $user->getOption( 'translate-sandbox-reminders' );
			$user->setOption( 'translate-sandbox-reminders', $reminders );
			$user->saveSettings();
		}

		return $isOK;
	}
}