mirror of
git://develop.git.wordpress.org/
synced 2025-01-17 21:08:44 +01:00
Community Events Dashboard: Always show a WordCamp if one is coming up.
WordCamps are celebrations of the local WordPress Community and once a local one is scheduled, people in that community should know it is coming. This adjusts the WordPress Events in the dashboard widgets to always display a WordCamp, even if there are multiple Meetups happening first. Props iandunn, metalandcoffee, warmlaundry, alejandroxlopez, jorbin. Merges [42726], [42728], and [43356] to the 4.9 branch. Fixes #41112. git-svn-id: https://develop.svn.wordpress.org/branches/4.9@43357 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
94acdb2e86
commit
c4b31e3816
@ -385,20 +385,33 @@ class WP_Community_Events {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Discards expired events, and reduces the remaining list.
|
* Prepares the event list for presentation.
|
||||||
|
*
|
||||||
|
* Discards expired events, and makes WordCamps "sticky." Attendees need more
|
||||||
|
* advanced notice about WordCamps than they do for meetups, so camps should
|
||||||
|
* appear in the list sooner. If a WordCamp is coming up, the API will "stick"
|
||||||
|
* it in the response, even if it wouldn't otherwise appear. When that happens,
|
||||||
|
* the event will be at the end of the list, and will need to be moved into a
|
||||||
|
* higher position, so that it doesn't get trimmed off.
|
||||||
*
|
*
|
||||||
* @since 4.8.0
|
* @since 4.8.0
|
||||||
|
* @since 4.9.7 Stick a WordCamp to the final list.
|
||||||
*
|
*
|
||||||
* @param array $response_body The response body which contains the events.
|
* @param array $response_body The response body which contains the events.
|
||||||
* @return array The response body with events trimmed.
|
* @return array The response body with events trimmed.
|
||||||
*/
|
*/
|
||||||
protected function trim_events( $response_body ) {
|
protected function trim_events( $response_body ) {
|
||||||
if ( isset( $response_body['events'] ) ) {
|
if ( isset( $response_body['events'] ) ) {
|
||||||
|
$wordcamps = array();
|
||||||
$current_timestamp = current_time( 'timestamp' );
|
$current_timestamp = current_time( 'timestamp' );
|
||||||
|
|
||||||
foreach ( $response_body['events'] as $key => $event ) {
|
foreach ( $response_body['events'] as $key => $event ) {
|
||||||
// Skip WordCamps, because they might be multi-day events.
|
/*
|
||||||
if ( 'meetup' !== $event['type'] ) {
|
* Skip WordCamps, because they might be multi-day events.
|
||||||
|
* Save a copy so they can be pinned later.
|
||||||
|
*/
|
||||||
|
if ( 'wordcamp' === $event['type'] ) {
|
||||||
|
$wordcamps[] = $event;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -410,6 +423,13 @@ class WP_Community_Events {
|
|||||||
}
|
}
|
||||||
|
|
||||||
$response_body['events'] = array_slice( $response_body['events'], 0, 3 );
|
$response_body['events'] = array_slice( $response_body['events'], 0, 3 );
|
||||||
|
$trimmed_event_types = wp_list_pluck( $response_body['events'], 'type' );
|
||||||
|
|
||||||
|
// Make sure the soonest upcoming WordCamps is pinned in the list.
|
||||||
|
if ( ! in_array( 'wordcamp', $trimmed_event_types ) && $wordcamps ) {
|
||||||
|
array_pop( $response_body['events'] );
|
||||||
|
array_push( $response_body['events'], $wordcamps[0] );
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return $response_body;
|
return $response_body;
|
||||||
|
@ -256,6 +256,224 @@ class Test_WP_Community_Events extends WP_UnitTestCase {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Test: get_events() should return the events with the WordCamp pinned in the prepared list.
|
||||||
|
*
|
||||||
|
* @since 4.9.7
|
||||||
|
*/
|
||||||
|
public function test_get_events_pin_wordcamp() {
|
||||||
|
add_filter( 'pre_http_request', array( $this, '_http_request_valid_response_unpinned_wordcamp' ) );
|
||||||
|
|
||||||
|
$response_body = $this->instance->get_events();
|
||||||
|
|
||||||
|
/*
|
||||||
|
* San Diego was at position 3 in the mock API response, but pinning puts it at position 2,
|
||||||
|
* so that it remains in the list. The other events should remain unchanged.
|
||||||
|
*/
|
||||||
|
$this->assertCount( 3, $response_body['events'] );
|
||||||
|
$this->assertEquals( $response_body['events'][0]['title'], 'Flexbox + CSS Grid: Magic for Responsive Layouts' );
|
||||||
|
$this->assertEquals( $response_body['events'][1]['title'], 'Part 3- Site Maintenance - Tools to Make It Easy' );
|
||||||
|
$this->assertEquals( $response_body['events'][2]['title'], 'WordCamp San Diego' );
|
||||||
|
|
||||||
|
remove_filter( 'pre_http_request', array( $this, '_http_request_valid_response_unpinned_wordcamp' ) );
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Simulates a valid HTTP response where a WordCamp needs to be pinned higher than it's default position.
|
||||||
|
*
|
||||||
|
* @since 4.9.7
|
||||||
|
*
|
||||||
|
* @return array A mock HTTP response.
|
||||||
|
*/
|
||||||
|
public function _http_request_valid_response_unpinned_wordcamp() {
|
||||||
|
return array(
|
||||||
|
'headers' => '',
|
||||||
|
'response' => array( 'code' => 200 ),
|
||||||
|
'cookies' => '',
|
||||||
|
'filename' => '',
|
||||||
|
'body' => wp_json_encode(
|
||||||
|
array(
|
||||||
|
'location' => $this->get_user_location(),
|
||||||
|
'events' => array(
|
||||||
|
array(
|
||||||
|
'type' => 'meetup',
|
||||||
|
'title' => 'Flexbox + CSS Grid: Magic for Responsive Layouts',
|
||||||
|
'url' => 'https://www.meetup.com/Eastbay-WordPress-Meetup/events/236031233/',
|
||||||
|
'meetup' => 'The East Bay WordPress Meetup Group',
|
||||||
|
'meetup_url' => 'https://www.meetup.com/Eastbay-WordPress-Meetup/',
|
||||||
|
'date' => date( 'Y-m-d H:i:s', strtotime( 'next Monday 1pm' ) ),
|
||||||
|
'location' => array(
|
||||||
|
'location' => 'Oakland, CA, USA',
|
||||||
|
'country' => 'us',
|
||||||
|
'latitude' => 37.808453,
|
||||||
|
'longitude' => -122.26593,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
array(
|
||||||
|
'type' => 'meetup',
|
||||||
|
'title' => 'Part 3- Site Maintenance - Tools to Make It Easy',
|
||||||
|
'url' => 'https://www.meetup.com/Wordpress-Bay-Area-CA-Foothills/events/237706839/',
|
||||||
|
'meetup' => 'WordPress Bay Area Foothills Group',
|
||||||
|
'meetup_url' => 'https://www.meetup.com/Wordpress-Bay-Area-CA-Foothills/',
|
||||||
|
'date' => date( 'Y-m-d H:i:s', strtotime( 'next Tuesday 1:30pm' ) ),
|
||||||
|
'location' => array(
|
||||||
|
'location' => 'Milpitas, CA, USA',
|
||||||
|
'country' => 'us',
|
||||||
|
'latitude' => 37.432813,
|
||||||
|
'longitude' => -121.907095,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
array(
|
||||||
|
'type' => 'meetup',
|
||||||
|
'title' => 'WordPress Q&A',
|
||||||
|
'url' => 'https://www.meetup.com/sanjosewp/events/245419844/',
|
||||||
|
'meetup' => 'The San Jose WordPress Meetup',
|
||||||
|
'meetup_url' => 'https://www.meetup.com/sanjosewp/',
|
||||||
|
'date' => date( 'Y-m-d H:i:s', strtotime( 'next Wednesday 5:30pm' ) ),
|
||||||
|
'location' => array(
|
||||||
|
'location' => 'Milpitas, CA, USA',
|
||||||
|
'country' => 'us',
|
||||||
|
'latitude' => 37.244194,
|
||||||
|
'longitude' => -121.889313,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
array(
|
||||||
|
'type' => 'wordcamp',
|
||||||
|
'title' => 'WordCamp San Diego',
|
||||||
|
'url' => 'https://2018.sandiego.wordcamp.org',
|
||||||
|
'meetup' => null,
|
||||||
|
'meetup_url' => null,
|
||||||
|
'date' => date( 'Y-m-d H:i:s', strtotime( 'next Thursday 9am' ) ),
|
||||||
|
'location' => array(
|
||||||
|
'location' => 'San Diego, CA',
|
||||||
|
'country' => 'US',
|
||||||
|
'latitude' => 32.7220419,
|
||||||
|
'longitude' => -117.1534513,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
)
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Test: get_events() shouldn't stick an extra WordCamp when there's already one that naturally
|
||||||
|
* falls into the list.
|
||||||
|
*
|
||||||
|
* @since 4.9.7
|
||||||
|
*/
|
||||||
|
public function test_get_events_dont_pin_multiple_wordcamps() {
|
||||||
|
add_filter( 'pre_http_request', array( $this, '_http_request_valid_response_multiple_wordcamps' ) );
|
||||||
|
|
||||||
|
$response_body = $this->instance->get_events();
|
||||||
|
|
||||||
|
/*
|
||||||
|
* The first meetup should be removed because it's expired, while the next 3 events are selected.
|
||||||
|
* WordCamp LA should not be stuck to the list, because San Diego already appears naturally.
|
||||||
|
*/
|
||||||
|
$this->assertCount( 3, $response_body['events'] );
|
||||||
|
$this->assertEquals( $response_body['events'][0]['title'], 'WordCamp San Diego' );
|
||||||
|
$this->assertEquals( $response_body['events'][1]['title'], 'Part 3- Site Maintenance - Tools to Make It Easy' );
|
||||||
|
$this->assertEquals( $response_body['events'][2]['title'], 'WordPress Q&A' );
|
||||||
|
|
||||||
|
remove_filter( 'pre_http_request', array( $this, '_http_request_valid_response_multiple_wordcamps' ) );
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Simulates a valid HTTP response where a WordCamp needs to be pinned higher than it's default position.
|
||||||
|
* no need to pin extra camp b/c one already exists in response
|
||||||
|
*
|
||||||
|
* @since 4.9.7
|
||||||
|
*
|
||||||
|
* @return array A mock HTTP response.
|
||||||
|
*/
|
||||||
|
public function _http_request_valid_response_multiple_wordcamps() {
|
||||||
|
return array(
|
||||||
|
'headers' => '',
|
||||||
|
'response' => array( 'code' => 200 ),
|
||||||
|
'cookies' => '',
|
||||||
|
'filename' => '',
|
||||||
|
'body' => wp_json_encode(
|
||||||
|
array(
|
||||||
|
'location' => $this->get_user_location(),
|
||||||
|
'events' => array(
|
||||||
|
array(
|
||||||
|
'type' => 'meetup',
|
||||||
|
'title' => 'Flexbox + CSS Grid: Magic for Responsive Layouts',
|
||||||
|
'url' => 'https://www.meetup.com/Eastbay-WordPress-Meetup/events/236031233/',
|
||||||
|
'meetup' => 'The East Bay WordPress Meetup Group',
|
||||||
|
'meetup_url' => 'https://www.meetup.com/Eastbay-WordPress-Meetup/',
|
||||||
|
'date' => date( 'Y-m-d H:i:s', strtotime( '2 days ago' ) ),
|
||||||
|
'location' => array(
|
||||||
|
'location' => 'Oakland, CA, USA',
|
||||||
|
'country' => 'us',
|
||||||
|
'latitude' => 37.808453,
|
||||||
|
'longitude' => -122.26593,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
array(
|
||||||
|
'type' => 'wordcamp',
|
||||||
|
'title' => 'WordCamp San Diego',
|
||||||
|
'url' => 'https://2018.sandiego.wordcamp.org',
|
||||||
|
'meetup' => null,
|
||||||
|
'meetup_url' => null,
|
||||||
|
'date' => date( 'Y-m-d H:i:s', strtotime( 'next Tuesday 9am' ) ),
|
||||||
|
'location' => array(
|
||||||
|
'location' => 'San Diego, CA',
|
||||||
|
'country' => 'US',
|
||||||
|
'latitude' => 32.7220419,
|
||||||
|
'longitude' => -117.1534513,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
array(
|
||||||
|
'type' => 'meetup',
|
||||||
|
'title' => 'Part 3- Site Maintenance - Tools to Make It Easy',
|
||||||
|
'url' => 'https://www.meetup.com/Wordpress-Bay-Area-CA-Foothills/events/237706839/',
|
||||||
|
'meetup' => 'WordPress Bay Area Foothills Group',
|
||||||
|
'meetup_url' => 'https://www.meetup.com/Wordpress-Bay-Area-CA-Foothills/',
|
||||||
|
'date' => date( 'Y-m-d H:i:s', strtotime( 'next Wednesday 1:30pm' ) ),
|
||||||
|
'location' => array(
|
||||||
|
'location' => 'Milpitas, CA, USA',
|
||||||
|
'country' => 'us',
|
||||||
|
'latitude' => 37.432813,
|
||||||
|
'longitude' => -121.907095,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
array(
|
||||||
|
'type' => 'meetup',
|
||||||
|
'title' => 'WordPress Q&A',
|
||||||
|
'url' => 'https://www.meetup.com/sanjosewp/events/245419844/',
|
||||||
|
'meetup' => 'The San Jose WordPress Meetup',
|
||||||
|
'meetup_url' => 'https://www.meetup.com/sanjosewp/',
|
||||||
|
'date' => date( 'Y-m-d H:i:s', strtotime( 'next Thursday 5:30pm' ) ),
|
||||||
|
'location' => array(
|
||||||
|
'location' => 'Milpitas, CA, USA',
|
||||||
|
'country' => 'us',
|
||||||
|
'latitude' => 37.244194,
|
||||||
|
'longitude' => -121.889313,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
array(
|
||||||
|
'type' => 'wordcamp',
|
||||||
|
'title' => 'WordCamp Los Angeles',
|
||||||
|
'url' => 'https://2018.la.wordcamp.org',
|
||||||
|
'meetup' => null,
|
||||||
|
'meetup_url' => null,
|
||||||
|
'date' => date( 'Y-m-d H:i:s', strtotime( 'next Friday 9am' ) ),
|
||||||
|
'location' => array(
|
||||||
|
'location' => 'Los Angeles, CA',
|
||||||
|
'country' => 'US',
|
||||||
|
'latitude' => 34.050888,
|
||||||
|
'longitude' => -118.285426,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
)
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Test that get_unsafe_client_ip() properly anonymizes all possible address formats
|
* Test that get_unsafe_client_ip() properly anonymizes all possible address formats
|
||||||
*
|
*
|
||||||
|
Loading…
x
Reference in New Issue
Block a user