mirror of
https://github.com/WordPress/five-for-the-future.git
synced 2025-04-22 19:13:44 +03:00

* Split Auth functionality out to new file
* Move email-related code into the email file
* Use `assertFalse` for boolean assertions
* Add `can_manage_pledge` to check user or token against a given pledge
Pulled out of e9763f6678
* Remove duplicate test
156 lines
4.9 KiB
PHP
156 lines
4.9 KiB
PHP
<?php
|
|
/**
|
|
* Helper functions for sending emails.
|
|
*/
|
|
|
|
namespace WordPressDotOrg\FiveForTheFuture\Email;
|
|
|
|
use WordPressDotOrg\FiveForTheFuture\{ Auth, Contributor };
|
|
use const WordPressDotOrg\FiveForTheFuture\PREFIX;
|
|
use const WordPressDotOrg\FiveForTheFuture\PledgeMeta\META_PREFIX;
|
|
|
|
defined( 'WPINC' ) || die();
|
|
|
|
/**
|
|
* Wrap `wp_mail()` with shared functionality.
|
|
*
|
|
* @param string $to
|
|
* @param string $subject
|
|
* @param string $message
|
|
* @param int $pledge_id
|
|
*
|
|
* @return bool
|
|
*/
|
|
function send_email( $to, $subject, $message, $pledge_id ) {
|
|
$headers = array(
|
|
'From: WordPress - Five for the Future <donotreply@wordpress.org>',
|
|
'Reply-To: support@wordcamp.org',
|
|
);
|
|
|
|
$result = wp_mail( $to, $subject, $message, $headers );
|
|
|
|
/**
|
|
* Broadcast the results of an attempt to send an email.
|
|
*
|
|
* @param string $to
|
|
* @param string $subject
|
|
* @param string $message
|
|
* @param array $headers
|
|
* @param bool $result
|
|
* @param int $pledge_id
|
|
*/
|
|
do_action( PREFIX . '_email_result', $to, $subject, $message, $headers, $result, $pledge_id );
|
|
|
|
return $result;
|
|
}
|
|
|
|
/**
|
|
* Email pledge manager to confirm their email address.
|
|
*
|
|
* @param int $pledge_id The ID of the pledge.
|
|
* @param int $action_page_id The ID of the page that the user will be taken back to, in order to process their
|
|
* confirmation request.
|
|
*
|
|
* @return bool
|
|
*/
|
|
function send_pledge_confirmation_email( $pledge_id, $action_page_id ) {
|
|
$pledge = get_post( $pledge_id );
|
|
|
|
$message = sprintf(
|
|
"Thanks for pledging your organization's time to contribute to the WordPress open source project! Please confirm this email address in order to publish your pledge:\n\n%s",
|
|
Auth\get_authentication_url( $pledge_id, 'confirm_pledge_email', $action_page_id )
|
|
);
|
|
|
|
return send_email(
|
|
$pledge->{'5ftf_org-pledge-email'},
|
|
'Please confirm your email address',
|
|
$message,
|
|
$pledge_id
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Send contributors an email to confirm their participation.
|
|
*
|
|
* @param int $pledge_id
|
|
* @param int|null $contributor_id Optional. Send to a specific contributor instead of all.
|
|
*/
|
|
function send_contributor_confirmation_emails( $pledge_id, $contributor_id = null ) {
|
|
$pledge = get_post( $pledge_id );
|
|
$subject = "Confirm your {$pledge->post_title} sponsorship";
|
|
|
|
/*
|
|
* Only fetch unconfirmed ones, because we might be resending confirmation emails, and we shouldn't resend to
|
|
* confirmed contributors.
|
|
*/
|
|
$unconfirmed_contributors = Contributor\get_pledge_contributors( $pledge->ID, 'pending', $contributor_id );
|
|
|
|
foreach ( $unconfirmed_contributors as $contributor ) {
|
|
$user = get_user_by( 'login', $contributor->post_title );
|
|
|
|
/*
|
|
* Their first name is ideal, but their username is the best fallback because `nickname`, `display_name`,
|
|
* etc are too formal.
|
|
*/
|
|
$name = $user->first_name ? $user->first_name : '@' . $user->user_nicename;
|
|
|
|
/*
|
|
* This uses w.org login accounts instead of `Auth\get_authentication_url()`, because the reasons for using
|
|
* tokens for pledges don't apply to contributors, accounts are more secure, and they provide a better UX
|
|
* because there's no expiration.
|
|
*/
|
|
$message =
|
|
"Howdy $name, {$pledge->post_title} has created a Five for the Future pledge on WordPress.org and listed you as one of the contributors that they sponsor to contribute to the WordPress open source project. You can view their pledge at:\n\n" .
|
|
|
|
get_permalink( $pledge_id ) . "\n\n" .
|
|
|
|
"To confirm that they're sponsoring your contributions, please review your pledges at:\n\n" .
|
|
|
|
get_permalink( get_page_by_path( 'my-pledges' ) ) . "\n\n" .
|
|
|
|
"Please also update your WordPress.org profile to include the number of hours per week that you contribute, and the teams that you contribute to:\n\n" .
|
|
|
|
"https://profiles.wordpress.org/me/profile/edit/group/5/\n\n" .
|
|
|
|
"If {$pledge->post_title} isn't sponsoring your contributions, then you can ignore this email, and you won't be listed on their pledge.";
|
|
|
|
$user = get_user_by( 'login', $contributor->post_title );
|
|
send_email( $user->user_email, $subject, $message, $pledge_id );
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Email the pledge admin a temporary link they can use to manage their pledge.
|
|
*
|
|
* @param int $pledge_id
|
|
*
|
|
* @return true|WP_Error
|
|
*/
|
|
function send_manage_pledge_link( $pledge_id ) {
|
|
$admin_email = get_post( $pledge_id )->{ META_PREFIX . 'org-pledge-email' };
|
|
|
|
if ( ! is_email( $admin_email ) ) {
|
|
return new WP_Error( 'invalid_email', 'Invalid email address.' );
|
|
}
|
|
|
|
$subject = __( 'Updating your Pledge', 'wporg-5ftf' );
|
|
$message =
|
|
'Howdy, please open this link to update your pledge:' . "\n\n" .
|
|
|
|
Auth\get_authentication_url(
|
|
$pledge_id,
|
|
'manage_pledge',
|
|
get_page_by_path( 'manage-pledge' )->ID,
|
|
// The token needs to be reused so that the admin can view the form, submit it, and view the result.
|
|
false
|
|
);
|
|
|
|
$result = send_email( $admin_email, $subject, $message, $pledge_id );
|
|
|
|
if ( ! $result ) {
|
|
$result = new WP_Error( 'email_failed', 'Email failed to send' );
|
|
}
|
|
|
|
return $result;
|
|
}
|