summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/jetpack/modules/widgets/gravatar-profile.php')
-rw-r--r--plugins/jetpack/modules/widgets/gravatar-profile.php435
1 files changed, 0 insertions, 435 deletions
diff --git a/plugins/jetpack/modules/widgets/gravatar-profile.php b/plugins/jetpack/modules/widgets/gravatar-profile.php
deleted file mode 100644
index f5171665..00000000
--- a/plugins/jetpack/modules/widgets/gravatar-profile.php
+++ /dev/null
@@ -1,435 +0,0 @@
-<?php
-
-/**
- * Register the widget for use in Appearance -> Widgets
- */
-add_action( 'widgets_init', 'jetpack_gravatar_profile_widget_init' );
-
-function jetpack_gravatar_profile_widget_init() {
- register_widget( 'Jetpack_Gravatar_Profile_Widget' );
-}
-
-/**
- * Display a widgetized version of your Gravatar Profile
- * http://blog.gravatar.com/2010/03/26/gravatar-profiles/
- */
-class Jetpack_Gravatar_Profile_Widget extends WP_Widget {
-
- function __construct() {
- parent::__construct(
- 'grofile',
- /** This filter is documented in modules/widgets/facebook-likebox.php */
- apply_filters( 'jetpack_widget_name', __( 'Gravatar Profile', 'jetpack' ) ),
- array(
- 'classname' => 'widget-grofile grofile',
- 'description' => __( 'Display a mini version of your Gravatar Profile', 'jetpack' ),
- 'customize_selective_refresh' => true,
- )
- );
-
- if ( is_admin() ) {
- add_action( 'admin_footer-widgets.php', array( $this, 'admin_script' ) );
- }
-
- if ( is_customize_preview() ) {
- add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_scripts' ) );
- }
- }
-
- function widget( $args, $instance ) {
- /**
- * Fires when an item is displayed on the front end.
- *
- * Can be used to track stats about the number of displays for a specific item
- *
- * @module widgets, shortcodes
- *
- * @since 1.6.0
- *
- * @param string widget_view Item type (e.g. widget, or embed).
- * @param string grofile Item description (e.g. grofile, goodreads).
- */
- do_action( 'jetpack_stats_extra', 'widget_view', 'grofile' );
-
- $instance = wp_parse_args(
- $instance, array(
- 'title' => '',
- 'email' => '',
- )
- );
-
- /** This filter is documented in core/src/wp-includes/default-widgets.php */
- $title = apply_filters( 'widget_title', $instance['title'] );
-
- if ( ! $instance['email'] ) {
- if ( current_user_can( 'edit_theme_options' ) ) {
- echo $args['before_widget'];
- if ( ! empty( $title ) ) {
- echo $args['before_title'] . $title . $args['after_title'];
- }
- echo '<p>' . sprintf( __( 'You need to select what to show in this <a href="%s">Gravatar Profile widget</a>.', 'jetpack' ), admin_url( 'widgets.php' ) ) . '</p>';
- echo $args['after_widget'];
- }
- return;
- }
-
- echo $args['before_widget'];
- if ( ! empty( $title ) ) {
- echo $args['before_title'] . $title . $args['after_title'];
- }
-
- $profile = $this->get_profile( $instance['email'] );
-
- if ( ! empty( $profile ) ) {
- $profile = wp_parse_args(
- $profile, array(
- 'thumbnailUrl' => '',
- 'profileUrl' => '',
- 'displayName' => '',
- 'aboutMe' => '',
- 'urls' => array(),
- 'accounts' => array(),
- )
- );
- $gravatar_url = add_query_arg( 's', 320, $profile['thumbnailUrl'] ); // the default grav returned by grofiles is super small
-
- // Enqueue front end assets.
- $this->enqueue_scripts();
-
- ?>
- <img src="<?php echo esc_url( $gravatar_url ); ?>" class="grofile-thumbnail no-grav" alt="<?php echo esc_attr( $profile['displayName'] ); ?>" />
- <div class="grofile-meta">
- <h4><a href="<?php echo esc_url( $profile['profileUrl'] ); ?>"><?php echo esc_html( $profile['displayName'] ); ?></a></h4>
- <p><?php echo wp_kses_post( $profile['aboutMe'] ); ?></p>
- </div>
-
- <?php
-
- if ( $instance['show_personal_links'] ) {
- $this->display_personal_links( (array) $profile['urls'] );
- }
-
- if ( $instance['show_account_links'] ) {
- $this->display_accounts( (array) $profile['accounts'] );
- }
-
- ?>
-
- <p><a href="<?php echo esc_url( $profile['profileUrl'] ); ?>" class="grofile-full-link">
- <?php
- echo esc_html(
- /**
- * Filter the Gravatar Profile widget's profile link title.
- *
- * @module widgets
- *
- * @since 2.8.0
- *
- * @param string $str Profile link title.
- */
- apply_filters(
- 'jetpack_gravatar_full_profile_title',
- __( 'View Full Profile &rarr;', 'jetpack' )
- )
- );
- ?>
- </a></p>
-
- <?php
- } else {
- if ( current_user_can( 'edit_theme_options' ) ) {
- echo '<p>' . esc_html__( 'Error loading profile', 'jetpack' ) . '</p>';
- }
- }
-
- echo $args['after_widget'];
- }
-
- function display_personal_links( $personal_links = array() ) {
- if ( empty( $personal_links ) ) {
- return;
- }
- ?>
-
- <h4>
- <?php
- echo esc_html(
- apply_filters(
- /**
- * Filter the Gravatar Profile widget's "Personal Links" section title.
- *
- * @module widgets
- *
- * @since 2.8.0
- *
- * @param string $str "Personal Links" section title.
- */
- 'jetpack_gravatar_personal_links_title',
- __( 'Personal Links', 'jetpack' )
- )
- );
- ?>
- </h4>
- <ul class="grofile-urls grofile-links">
-
- <?php foreach ( $personal_links as $personal_link ) : ?>
- <li>
- <a href="<?php echo esc_url( $personal_link['value'] ); ?>">
- <?php
- $link_title = ( ! empty( $personal_link['title'] ) ) ? $personal_link['title'] : $personal_link['value'];
- echo esc_html( $link_title );
- ?>
- </a>
- </li>
- <?php endforeach; ?>
- </ul>
-
- <?php
- }
-
- function display_accounts( $accounts = array() ) {
- if ( empty( $accounts ) ) {
- return;
- }
- ?>
-
- <h4>
- <?php
- echo esc_html(
- /**
- * Filter the Gravatar Profile widget's "Verified Services" section title.
- *
- * @module widgets
- *
- * @since 2.8.0
- *
- * @param string $str "Verified Services" section title.
- */
- apply_filters(
- 'jetpack_gravatar_verified_services_title',
- __( 'Verified Services', 'jetpack' )
- )
- );
- ?>
- </h4>
- <ul class="grofile-urls grofile-accounts">
-
- <?php
- foreach ( $accounts as $account ) :
- if ( $account['verified'] != 'true' ) {
- continue;
- }
-
- $sanitized_service_name = $this->get_sanitized_service_name( $account['shortname'] );
- ?>
-
- <li>
- <a href="<?php echo esc_url( $account['url'] ); ?>" title="<?php echo sprintf( _x( '%1$s on %2$s', '1: User Name, 2: Service Name (Facebook, Twitter, ...)', 'jetpack' ), esc_html( $account['display'] ), esc_html( $sanitized_service_name ) ); ?>">
- <span class="grofile-accounts-logo grofile-accounts-<?php echo esc_attr( $account['shortname'] ); ?> accounts_<?php echo esc_attr( $account['shortname'] ); ?>"></span>
- </a>
- </li>
-
- <?php endforeach; ?>
- </ul>
-
- <?php
- }
-
- /**
- * Enqueue CSS and JavaScript.
- *
- * @since 4.0.0
- */
- function enqueue_scripts() {
- wp_enqueue_style(
- 'gravatar-profile-widget',
- plugins_url( 'gravatar-profile.css', __FILE__ ),
- array(),
- '20120711'
- );
-
- wp_enqueue_style(
- 'gravatar-card-services',
- 'https://secure.gravatar.com/css/services.css',
- array(),
- defined( 'GROFILES__CACHE_BUSTER' ) ? GROFILES__CACHE_BUSTER : gmdate( 'YW' )
- );
- }
-
- function form( $instance ) {
- $title = isset( $instance['title'] ) ? $instance['title'] : '';
- $email = isset( $instance['email'] ) ? $instance['email'] : '';
- $email_user = isset( $instance['email_user'] ) ? $instance['email_user'] : get_current_user_id();
- $show_personal_links = isset( $instance['show_personal_links'] ) ? (bool) $instance['show_personal_links'] : '';
- $show_account_links = isset( $instance['show_account_links'] ) ? (bool) $instance['show_account_links'] : '';
- $profile_url = 'https://gravatar.com/profile/edit';
-
- if ( defined( 'IS_WPCOM' ) && IS_WPCOM ) {
- $profile_url = admin_url( 'profile.php' );
-
- if ( isset( $_REQUEST['calypso'] ) ) {
- $profile_url = 'https://wordpress.com/me';
- }
- }
- ?>
- <p>
- <label for="<?php echo $this->get_field_id( 'title' ); ?>">
- <?php esc_html_e( 'Title', 'jetpack' ); ?> <input class="widefat" id="<?php echo $this->get_field_id( 'title' ); ?>" name="<?php echo $this->get_field_name( 'title' ); ?>" type="text" value="<?php echo esc_attr( $title ); ?>" />
- </label>
- </p>
-
- <p>
- <label for="<?php echo $this->get_field_id( 'email_user' ); ?>">
- <?php esc_html_e( 'Select a user or pick "custom" and enter a custom email address.', 'jetpack' ); ?>
- <br />
-
- <?php
- wp_dropdown_users(
- array(
- 'show_option_none' => __( 'Custom', 'jetpack' ),
- 'selected' => $email_user,
- 'name' => $this->get_field_name( 'email_user' ),
- 'id' => $this->get_field_id( 'email_user' ),
- 'class' => 'gravatar-profile-user-select',
- )
- );
- ?>
- </label>
- </p>
-
- <p class="gprofile-email-container <?php echo empty( $email_user ) || $email_user == -1 ? '' : 'hidden'; ?>">
- <label for="<?php echo $this->get_field_id( 'email' ); ?>"><?php esc_html_e( 'Custom Email Address', 'jetpack' ); ?>
- <input class="widefat" id="<?php echo $this->get_field_id( 'email' ); ?>" name="<?php echo $this->get_field_name( 'email' ); ?>" type="text" value="<?php echo esc_attr( $email ); ?>" />
- </label>
- </p>
-
- <p>
- <label for="<?php echo $this->get_field_id( 'show_personal_links' ); ?>">
- <input type="checkbox" name="<?php echo $this->get_field_name( 'show_personal_links' ); ?>" id="<?php echo $this->get_field_id( 'show_personal_links' ); ?>" <?php checked( $show_personal_links ); ?> />
- <?php esc_html_e( 'Show Personal Links', 'jetpack' ); ?>
- <br />
- <small><?php esc_html_e( 'Links to your websites, blogs, or any other sites that help describe who you are.', 'jetpack' ); ?></small>
- </label>
- </p>
-
- <p>
- <label for="<?php echo $this->get_field_id( 'show_account_links' ); ?>">
- <input type="checkbox" name="<?php echo $this->get_field_name( 'show_account_links' ); ?>" id="<?php echo $this->get_field_id( 'show_account_links' ); ?>" <?php checked( $show_account_links ); ?> />
- <?php esc_html_e( 'Show Account Links', 'jetpack' ); ?>
- <br />
- <small><?php esc_html_e( 'Links to services that you use across the web.', 'jetpack' ); ?></small>
- </label>
- </p>
-
- <p><a href="<?php echo esc_url( $profile_url ); ?>" target="_blank" title="<?php esc_attr_e( 'Opens in new window', 'jetpack' ); ?>"><?php esc_html_e( 'Edit Your Profile', 'jetpack' ); ?></a> | <a href="https://gravatar.com" target="_blank" title="<?php esc_attr_e( 'Opens in new window', 'jetpack' ); ?>"><?php esc_html_e( "What's a Gravatar?", 'jetpack' ); ?></a></p>
-
- <?php
- }
-
- function admin_script() {
- ?>
- <script>
- jQuery( function( $ ) {
- $( '.wrap' ).on( 'change', '.gravatar-profile-user-select', function() {
- var $input = $(this).closest('.widget-inside').find('.gprofile-email-container');
- if ( '-1' === this.value.toLowerCase() ) {
- $input.show();
- } else {
- $input.hide();
- }
- });
- } );
- </script>
- <?php
- }
-
- function update( $new_instance, $old_instance ) {
-
- $instance = array();
-
- $instance['title'] = isset( $new_instance['title'] ) ? wp_kses( $new_instance['title'], array() ) : '';
- $instance['email'] = isset( $new_instance['email'] ) ? wp_kses( $new_instance['email'], array() ) : '';
- $instance['email_user'] = isset( $new_instance['email_user'] ) ? intval( $new_instance['email_user'] ) : -1;
- $instance['show_personal_links'] = isset( $new_instance['show_personal_links'] ) ? (bool) $new_instance['show_personal_links'] : false;
- $instance['show_account_links'] = isset( $new_instance['show_account_links'] ) ? (bool) $new_instance['show_account_links'] : false;
-
- if ( $instance['email_user'] > 0 ) {
- $user = get_userdata( $instance['email_user'] );
- $instance['email'] = $user->user_email;
- }
-
- $hashed_email = md5( strtolower( trim( $instance['email'] ) ) );
- $cache_key = 'grofile-' . $hashed_email;
- delete_transient( $cache_key );
-
- return $instance;
- }
-
- private function get_profile( $email ) {
- $hashed_email = md5( strtolower( trim( $email ) ) );
- $cache_key = 'grofile-' . $hashed_email;
-
- if ( ! $profile = get_transient( $cache_key ) ) {
- $profile_url = sprintf(
- 'https://secure.gravatar.com/%s.json',
- $hashed_email
- );
-
- $expire = 300;
- $response = wp_remote_get(
- esc_url_raw( $profile_url ),
- array( 'User-Agent' => 'WordPress.com Gravatar Profile Widget' )
- );
- $response_code = wp_remote_retrieve_response_code( $response );
- if ( 200 == $response_code ) {
- $profile = wp_remote_retrieve_body( $response );
- $profile = json_decode( $profile, true );
-
- if ( is_array( $profile ) && ! empty( $profile['entry'] ) && is_array( $profile['entry'] ) ) {
- $expire = 900; // cache for 15 minutes
- $profile = $profile['entry'][0];
- } else {
- // Something strange happened. Cache for 5 minutes.
- $profile = array();
- }
- } else {
- $expire = 900; // cache for 15 minutes
- $profile = array();
- }
-
- set_transient( $cache_key, $profile, $expire );
- }
- return $profile;
- }
-
- private function get_sanitized_service_name( $shortname ) {
- // Some services have stylized or mixed cap names *cough* WP *cough*
- switch ( $shortname ) {
- case 'friendfeed':
- return 'FriendFeed';
- case 'linkedin':
- return 'LinkedIn';
- case 'yahoo':
- return 'Yahoo!';
- case 'youtube':
- return 'YouTube';
- // phpcs:ignore WordPress.WP.CapitalPDangit
- case 'wordpress':
- return 'WordPress';
- case 'tripit':
- return 'TripIt';
- case 'myspace':
- return 'MySpace';
- case 'foursquare':
- return 'foursquare';
- case 'google':
- return 'Google+';
- default:
- // Others don't
- $shortname = ucwords( $shortname );
- }
- return $shortname;
- }
-}
-
-// END