mirror of
https://github.com/10h30/wp-strava.git
synced 2026-06-05 15:10:01 +09:00
104 lines
4.6 KiB
PHP
104 lines
4.6 KiB
PHP
<?php
|
|
|
|
/**
|
|
* WP Strava Latest Rides Widget Class
|
|
*/
|
|
class WPStrava_LatestRidesWidget extends WP_Widget {
|
|
|
|
public function __construct() {
|
|
$widget_ops = array( 'classname' => 'LatestRidesWidget', 'description' => __( 'Will publish your latest rides activity from strava.com.' ) );
|
|
parent::__construct( 'wp-strava', $name = 'Strava Latest Rides', $widget_ops );
|
|
add_action( 'wp_enqueue_scripts', array( $this, 'maybe_enqueue' ) );
|
|
}
|
|
|
|
public function maybe_enqueue() {
|
|
if ( is_active_widget( false, false, $this->id_base ) ) {
|
|
wp_enqueue_style( 'wp-strava-style' ); //only load this when wigit is loaded
|
|
}
|
|
}
|
|
|
|
/** @see WP_Widget::widget */
|
|
public function widget( $args, $instance ) {
|
|
extract( $args );
|
|
|
|
//$widget_id = $args['widget_id'];
|
|
$title = apply_filters( 'widget_title', empty( $instance['title'] ) ? __( 'Rides', 'wp-strava' ) : $instance['title'] );
|
|
$strava_club_id = empty( $instance['strava_club_id'] ) ? '' : $instance['strava_club_id'];
|
|
$quantity = empty( $instance['quantity'] ) ? '5' : $instance['quantity'];
|
|
|
|
$this->som = WPStrava_SOM::get_som();
|
|
?>
|
|
<?php echo $before_widget; ?>
|
|
<?php if ( $title ) echo $before_title . $title . $after_title; ?>
|
|
<?php echo $this->strava_request_handler( $strava_club_id, $quantity ); ?>
|
|
<?php echo $after_widget; ?>
|
|
<?php
|
|
}
|
|
|
|
/** @see WP_Widget::update */
|
|
public function update( $new_instance, $old_instance ) {
|
|
$instance = $old_instance;
|
|
$instance['title'] = strip_tags( $new_instance['title'] );
|
|
$instance['strava_club_id'] = strip_tags( $new_instance['strava_club_id'] );
|
|
$instance['quantity'] = $new_instance['quantity'];
|
|
|
|
return $instance;
|
|
}
|
|
|
|
/** @see WP_Widget::form */
|
|
public function form( $instance ) {
|
|
$title = isset( $instance['title'] ) ? esc_attr( $instance['title'] ) : __( 'Rides', 'wp-strava' );
|
|
$strava_club_id = isset( $instance['strava_club_id'] ) ? esc_attr( $instance['strava_club_id'] ) : '';
|
|
$quantity = isset( $instance['quantity'] ) ? absint( $instance['quantity'] ) : 5;
|
|
|
|
?>
|
|
<p>
|
|
<label for="<?php echo $this->get_field_id( 'title' ); ?>"><?php _e( 'Title:' ); ?></label>
|
|
<input class="widefat" id="<?php echo $this->get_field_id( 'title' ); ?>" name="<?php echo $this->get_field_name( 'title' ); ?>" type="text" value="<?php echo $title; ?>" />
|
|
</p>
|
|
<p>
|
|
<label for="<?php echo $this->get_field_id('strava_club_id'); ?>"><?php _e('Club ID (leave blank to show Athlete):'); ?></label>
|
|
<input class="widefat" id="<?php echo $this->get_field_id('strava_club_id'); ?>" name="<?php echo $this->get_field_name('strava_club_id'); ?>" type="text" value="<?php echo $strava_club_id; ?>" />
|
|
</p>
|
|
<p>
|
|
<label for="<?php echo $this->get_field_id('quantity'); ?>"><?php _e('Quantity:'); ?></label>
|
|
<input class="widefat" id="<?php echo $this->get_field_id('quantity'); ?>" name="<?php echo $this->get_field_name('quantity'); ?>" type="text" value="<?php echo $quantity; ?>" />
|
|
</p>
|
|
<?php
|
|
}
|
|
|
|
// The handler to the ajax call, we will avoid this if Strava support jsonp request and we can do it
|
|
// the parsing directly on the jQuery ajax call, the returned text will be enclosed in the $response variable.
|
|
private function strava_request_handler( $strava_club_id, $quantity ) {
|
|
|
|
$strava_rides = WPStrava::get_instance()->rides;
|
|
|
|
$rides = $strava_rides->getRides( $strava_club_id, $quantity );
|
|
if ( is_wp_error( $rides ) )
|
|
return $rides->get_error_message();
|
|
|
|
$response = "<ul id='rides'>";
|
|
foreach( $rides as $ride ) {
|
|
$response .= "<li class='ride'>";
|
|
$response .= "<a href='" . WPStrava_Rides::RIDES_URL . $ride->id . "' target='_blank'>" . $ride->name . "</a>";
|
|
$response .= "<div class='ride-item'>";
|
|
$unixtime = strtotime( $ride->start_date_local );
|
|
$response .= sprintf( __("On %s %s", "wp-strava"), date_i18n( get_option( 'date_format' ), $unixtime ), date_i18n( get_option( 'time_format' ), $unixtime ) );
|
|
|
|
if ( is_numeric( $strava_club_id ) ) {
|
|
$response .= " <a href='" . WPStrava_Rides::ATHLETES_URL . $ride->athlete_id . "'>" . $ride->athlete_name . "</a>";
|
|
}
|
|
|
|
$response .= sprintf( __(" rode %s %s", "wp-strava"), $this->som->distance( $ride->distance ), $this->som->get_distance_label() );
|
|
$response .= sprintf( __( " during %s %s", "wp-strava" ), $this->som->time( $ride->elapsed_time ), $this->som->get_time_label() );
|
|
$response .= sprintf( __( " climbing %s %s", "wp-strava" ), $this->som->elevation( $ride->total_elevation_gain ), $this->som->get_elevation_label() );
|
|
$response .= "</div>";
|
|
$response .= "</li>";
|
|
}
|
|
$response .= "</ul>";
|
|
return $response;
|
|
} // Function strava_request_handler
|
|
|
|
} // class LatestRidesWidget
|
|
|