| 1 |
<?php |
| 2 |
|
| 3 |
namespace Give\DonationSpam\Akismet\DataTransferObjects; |
| 4 |
|
| 5 |
/** |
| 6 |
* @since 3.15.0 |
| 7 |
*/ |
| 8 |
class SpamContext |
| 9 |
{ |
| 10 |
/** |
| 11 |
* @var CommentCheckArgs |
| 12 |
*/ |
| 13 |
protected $args; |
| 14 |
|
| 15 |
/** |
| 16 |
* @var array |
| 17 |
*/ |
| 18 |
protected $response; |
| 19 |
|
| 20 |
/** |
| 21 |
* @since 3.15.0 |
| 22 |
*/ |
| 23 |
public function __construct(CommentCheckArgs $args, array $response) |
| 24 |
{ |
| 25 |
$this->args = $args; |
| 26 |
$this->response = $response; |
| 27 |
} |
| 28 |
|
| 29 |
/** |
| 30 |
* @since 3.15.0 |
| 31 |
*/ |
| 32 |
public function __serialize(): array |
| 33 |
{ |
| 34 |
return [ |
| 35 |
'donor_email' => $this->args->comment_author_email, |
| 36 |
'filter' => 'akismet', |
| 37 |
'message' => $this->formatMessage(), |
| 38 |
]; |
| 39 |
} |
| 40 |
|
| 41 |
/** |
| 42 |
* @since 3.15.0 |
| 43 |
*/ |
| 44 |
public function formatMessage(): string |
| 45 |
{ |
| 46 |
return sprintf( |
| 47 |
'<p><strong>%1$s</strong><pre>%2$s</pre></p><strong>%3$s</strong><pre>%4$s</pre><p>', |
| 48 |
__( 'Request', 'give' ), |
| 49 |
print_r( $this->args, true ), |
| 50 |
__( 'Response', 'give' ), |
| 51 |
print_r( $this->response, true ) |
| 52 |
); |
| 53 |
} |
| 54 |
} |
| 55 |
|