is_active() ) {
return;
}
$license_info = get_option( 'external_updates-event-aggregator' );
if ( isset( $license_info->update->api_expired ) && $license_info->update->api_expired ) {
tribe_notice( 'tribe-expired-aggregator-license', array( $this, 'render_notice_expired_aggregator_license' ), 'type=warning' );
}
}
public function enqueue_media() {
if ( ! $this->is_active() ) {
return;
}
wp_enqueue_media();
}
public function is_visible() {
return true;
}
public function get_slug() {
return 'new';
}
public function get_label() {
return esc_html__( 'New Import', 'the-events-calendar' );
}
public function handle_submit() {
if ( empty( $_POST['aggregator']['action'] ) || 'new' !== $_POST['aggregator']['action'] ) {
return;
}
$submission = parent::handle_submit();
if ( empty( $submission['record'] ) || empty( $submission['post_data'] ) || empty( $submission['meta'] ) ) {
return;
}
/** @var Tribe__Events__Aggregator__Record__Abstract $record */
$record = $submission['record'];
$post_data = $submission['post_data'];
$meta = $submission['meta'];
// mark the record creation as a preview record
$meta['preview'] = true;
if ( ! empty( $post_data['import_id'] ) ) {
$this->handle_import_finalize( $post_data );
return;
}
// Prevents Accidents
if ( 'manual' === $meta['type'] ) {
$meta['frequency'] = null;
}
$post = $record->create( $meta['type'], array(), $meta );
if ( is_wp_error( $post ) ) {
return $post;
}
$result = $record->queue_import();
return $result;
}
public function handle_facebook_credentials() {
/**
* Verify that we are dealing with a FB token Request
*/
if ( ! isset( $_GET['ea-fb-token'] ) ) {
return false;
}
/**
* @todo include a way to handle errors on the Send back URL
*/
$api = tribe( 'events-aggregator.service' )->api();
$response = tribe( 'events-aggregator.service' )->get_facebook_token();
$type = $_GET['ea-fb-token'];
if ( is_wp_error( $response ) ) {
return false;
}
if ( empty( $response->data ) ) {
return false;
}
if ( empty( $response->data->expires ) || empty( $response->data->token ) || empty( $response->data->scopes ) ) {
return false;
}
$url_map = array(
'new' => Tribe__Events__Aggregator__Page::instance()->get_url( array( 'tab' => $this->get_slug(), 'ea-auth' => 'facebook' ) ),
'settings' => Tribe__Settings::instance()->get_url( array( 'tab' => 'addons', 'ea-auth' => 'facebook' ) ),
);
if ( ! isset( $url_map[ $type ] ) ) {
return false;
}
// Calculate when will this Token Expire
$expires = absint( trim( preg_replace( '/[^0-9]/', '', $response->data->expires ) ) );
$expires += time();
// Save the Options
tribe_update_option( 'fb_token', trim( preg_replace( '/[^a-zA-Z0-9]/', '', $response->data->token ) ) );
tribe_update_option( 'fb_token_expires', $expires );
tribe_update_option( 'fb_token_scopes', trim( preg_replace( '/[^a-zA-Z0-9\,_-]/', '', $response->data->scopes ) ) );
// Send it back to the Given Url
wp_redirect( $url_map[ $type ] );
exit;
}
public function handle_import_finalize( $data ) {
$this->messages = array(
'error' => array(),
'success' => array(),
'warning' => array(),
);
$record = Tribe__Events__Aggregator__Records::instance()->get_by_import_id( $data['import_id'] );
if ( is_wp_error( $record ) ) {
$this->messages['error'][] = $record->get_error_message();
return $this->messages;
}
// Make sure we have a post status set no matter what
if ( empty( $data['post_status'] ) ) {
$data['post_status'] = Tribe__Events__Aggregator__Settings::instance()->default_post_status( $data['origin'] );
}
// If the submitted category is null, that means the user intended to de-select the default
// category if there is one, so setting it to null is ok here
$record->update_meta( 'category', empty( $data['category'] ) ? null : $data['category'] );
$record->update_meta( 'post_status', $data['post_status'] );
$record->update_meta( 'ids_to_import', empty( $data['selected_rows'] ) ? 'all' : json_decode( stripslashes( $data['selected_rows'] ) ) );
// if we get here, we're good! Set the status to pending
$record->set_status_as_pending();
$record->finalize();
if ( 'schedule' === $record->meta['type'] ) {
$this->messages['success'][] = __( '1 import was scheduled.', 'the-events-calendar' );
$create_schedule_result = $record->create_schedule_record();
if ( is_wp_error( $create_schedule_result ) ) {
$this->messages[ 'error' ][] = $create_schedule_result->get_error_message();
tribe_notice( 'tribe-aggregator-import-failed', array( $this, 'render_notice_import_failed' ), 'type=error' );
$record->set_status_as_failed( $create_schedule_result );
return $create_schedule_result;
}
}
$record->update_meta( 'interactive', true );
if ( 'csv' === $data['origin'] ) {
$result = $record->process_posts( $data );
} else {
$result = $record->process_posts();
}
$result->record = $record;
$this->messages = $this->get_result_messages( $result );
if (
empty( $this->messages['error'] )
|| ! empty( $this->messages['success'] )
|| ! empty( $this->messages['warning'] )
) {
tribe_notice( 'tribe-aggregator-import-complete', array( $this, 'render_notice_import_complete' ), 'type=success' );
}
}
public function get_result_messages( $queue ) {
$messages = array();
if ( is_wp_error( $queue ) ) {
$messages[ 'error' ][] = $queue->get_error_message();
tribe_notice( 'tribe-aggregator-import-failed', array( $this, 'render_notice_import_failed' ), 'type=error' );
return $messages;
}
$is_queued = $queue->count();
$content_post_type = empty( $queue->record->meta['content_type'] ) ? Tribe__Events__Main::POSTTYPE : $queue->record->meta['content_type'];
$content_type = tribe_get_event_label_singular_lowercase();
$content_type_plural = tribe_get_event_label_plural_lowercase();
if ( 'csv' === $queue->record->meta['origin'] && 'tribe_events' !== $queue->record->meta['content_type'] ) {
$content_type_object = get_post_type_object( $queue->record->meta['content_type'] );
$content_type = empty( $content_type_object->labels->singular_name_lowercase ) ? $content_type_object->labels->singular_name : $content_type_object->labels->singular_name_lowercase;
$content_type_plural = empty( $content_type_object->labels->plural_name_lowercase ) ? $content_type_object->labels->name : $content_type_object->labels->plural_name_lowercase;
$content_post_type = $content_type_object->name;
}
if ( ! $is_queued ) {
$item_created = $queue->activity->get( $content_post_type, 'created' );
if ( ! empty( $item_created ) ) {
$content_label = 1 === $queue->activity->count( $content_post_type, 'created' ) ? $content_type : $content_type_plural;
$messages['success'][] = sprintf( // add created event count
_n( '%1$d new %2$s was imported.', '%1$d new %2$s were imported.', $queue->activity->count( $content_post_type, 'created' ), 'the-events-calendar' ),
$queue->activity->count( $content_post_type, 'created' ),
$content_label
);
}
$item_updated = $queue->activity->get( $content_post_type, 'updated' );
if ( ! empty( $item_updated ) ) {
$content_label = 1 === $queue->activity->count( $content_post_type, 'updated' ) ? $content_type : $content_type_plural;
// @todo: include a part of sentence like: ", including %1$d %2$signored event%3$s.", ,
$messages['success'][] = sprintf( // add updated event count
_n( '%1$d existing %2$s was updated.', '%1$d existing %2$s were updated.', $queue->activity->count( $content_post_type, 'updated' ), 'the-events-calendar' ),
$queue->activity->count( $content_post_type, 'updated' ),
$content_label
);
}
$item_skipped = $queue->activity->get( $content_post_type, 'skipped' );
if ( ! empty( $item_skipped ) ) {
$content_label = 1 === $queue->activity->count( $content_post_type, 'skipped' ) ? $content_type : $content_type_plural;
$messages['success'][] = sprintf( // add skipped event count
_n( '%1$d already-imported %2$s was skipped.', '%1$d already-imported %2$s were skipped.', $queue->activity->count( $content_post_type, 'skipped' ), 'the-events-calendar' ),
$queue->activity->count( $content_post_type, 'skipped' ),
$content_label
);
}
$images_created = $queue->activity->get( 'images', 'created' );
if ( ! empty( $images_created ) ) {
$messages['success'][] = sprintf( // add image import count
_n( '%1$d new image was imported.', '%1$d new images were imported.', $queue->activity->count( 'images', 'created' ), 'the-events-calendar' ),
$queue->activity->count( 'images', 'created' )
);
}
if ( $queue && ! $messages ) {
$messages['success'][] = sprintf(
__( 'No %1$s were imported or updated.', 'the-events-calendar' ),
$content_type_plural
);
}
if ( ! empty( $messages['success'] ) && ! empty( $content_type_object->show_ui ) ) {
// append a URL to view all records for the given post type
$url = admin_url( 'edit.php?post_type=' . $content_post_type );
$link_text = sprintf( __( 'View all %s', 'the-events-calendar' ), $content_type_plural );
$messages['success'][ count( $messages['success'] ) - 1 ] .= ' ' . esc_html( $link_text ) . '';
}
// if not CSV, pull counts for venues and organizers that were auto-created
if ( 'csv' !== $queue->record->meta['origin'] ) {
$venue_created = $queue->activity->get( 'venue', 'created' );
if ( ! empty( $venue_created ) ) {
$messages['success'][] = '
' .
sprintf( // add activity count
_n( '%1$d new venue was imported.', '%1$d new venues were imported.', $queue->activity->count( 'venue', 'created' ), 'the-events-calendar' ),
$queue->activity->count( 'venue', 'created' )
) .
' ' .
__( 'View your event venues', 'the-events-calendar' ) .
'';
}
$organizer_created = $queue->activity->get( 'organizer', 'created' );
if ( ! empty( $organizer_created ) ) {
$messages['success'][] = '
' .
sprintf( // add organizer count
_n( '%1$d new organizer was imported.', '%1$d new organizers were imported.', $queue->activity->count( 'organizer', 'created' ), 'the-events-calendar' ),
$queue->activity->count( 'organizer', 'created' )
) .
' ' .
__( 'View your event organizers', 'the-events-calendar' ) .
'';
}
}
$category_created = $queue->activity->get( 'category', 'created' );
if ( ! empty( $category_created ) ) {
$messages['success'][] = '
' .
sprintf( // add category count
_n( '%1$d new event category was created.', '%1$d new event categories were created.', $queue->activity->count( 'category', 'created' ), 'the-events-calendar' ),
$queue->activity->count( 'category', 'created' )
) .
' ' .
__( 'View your event categories', 'the-events-calendar' ) .
'';
}
}
if (
! empty( $messages['error'] )
|| ! empty( $messages['success'] )
|| ! empty( $messages['warning'] )
) {
if ( 'manual' == $queue->record->type ) {
array_unshift( $messages['success'], __( 'Import complete!', 'the-events-calendar' ) . '
' );
} else {
array_unshift( $messages['success'], __( 'Your scheduled import was saved and the first import is complete!', 'the-events-calendar' ) . '
' );
$scheduled_time = strtotime( $queue->record->post->post_modified ) + $queue->record->frequency->interval;
$scheduled_time_string = date( get_option( 'date_format' ), $scheduled_time ) .
_x( ' at ', 'separator between date and time', 'the-events-calendar' ) .
date( get_option( 'time_format' ), $scheduled_time );
$messages['success'][] = '
' .
sprintf( // add in timing
__( 'The next import is scheduled for %1$s.', 'the-events-calendar' ),
esc_html( $scheduled_time_string )
) .
' ' .
__( 'View your scheduled imports.', 'the-events-calendar' ) .
'';
}
}
return $messages;
}
public function ajax_save_credentials() {
if ( empty( $_POST['tribe_credentials_which'] ) ) {
$data = array(
'message' => __( 'Invalid credential save request', 'the-events-calendar' ),
);
wp_send_json_error( $data );
}
$which = $_POST['tribe_credentials_which'];
if ( empty( $_POST['_wpnonce'] ) || ! wp_verify_nonce( $_POST['_wpnonce'], "tribe-save-{$which}-credentials" ) ) {
$data = array(
'message' => __( 'Invalid credential save nonce', 'the-events-calendar' ),
);
wp_send_json_error( $data );
}
if ( 'meetup' === $which ) {
if ( empty( $_POST['meetup_api_key'] ) ) {
$data = array(
'message' => __( 'The Meetup API key is required.', 'the-events-calendar' ),
);
wp_send_json_error( $data );
}
tribe_update_option( 'meetup_api_key', trim( preg_replace( '/[^a-zA-Z0-9]/', '', $_POST['meetup_api_key'] ) ) );
$data = array(
'message' => __( 'Credentials have been saved', 'the-events-calendar' ),
);
wp_send_json_success( $data );
}
$data = array(
'message' => __( 'Unable to save credentials', 'the-events-calendar' ),
);
wp_send_json_error( $data );
}
public function ajax_create_import() {
$result = $this->handle_submit();
if ( is_wp_error( $result ) ) {
$result = (object) array(
'message_code' => $result->get_error_code(),
'message' => $result->get_error_message(),
);
wp_send_json_error( $result );
}
wp_send_json_success( $result );
}
public function ajax_fetch_import() {
$import_id = $_GET['import_id'];
$record = Tribe__Events__Aggregator__Records::instance()->get_by_import_id( $import_id );
if ( is_wp_error( $record ) ) {
wp_send_json_error( $record );
}
$result = $record->get_import_data();
if ( is_wp_error( $result ) ) {
wp_send_json_error( $result );
}
// if we've received a source name, let's set that in the record as soon as possible
if ( ! empty( $result->data->source_name ) ) {
$record->update_meta( 'source_name', $result->data->source_name );
if ( ! empty( $record->post->post_parent ) ) {
$parent_record = Tribe__Events__Aggregator__Records::instance()->get_by_post_id( $record->post->post_parent );
$parent_record->update_meta( 'source_name', $result->data->source_name );
}
}
wp_send_json_success( $result );
}
/**
* Renders the "Missing Aggregator License" notice
*
* @return string
*/
public function maybe_display_aggregator_upsell() {
if ( defined( 'TRIBE_HIDE_UPSELL' ) ) {
return;
}
if ( tribe( 'events-aggregator.main' )->is_service_active() ) {
return;
}
ob_start();
?>
render( 'tribe-expired-aggregator-license', $html ); } /** * Renders any of the "import complete" messages */ public function render_notice_import_complete() { if ( empty( $this->messages['success'] ) ) { return null; } $html = '
' . implode( ' ', $this->messages[ 'success' ] ) . '
'; return Tribe__Admin__Notices::instance()->render( 'tribe-aggregator-import-complete', $html ); } /** * Renders failed import messages */ public function render_notice_import_failed() { if ( empty( $this->messages['error'] ) ) { return null; } $html = '' . implode( ' ', $this->messages['error'] ) . '
'; return Tribe__Admin__Notices::instance()->render( 'tribe-aggregator-import-failed', $html ); } }