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.php284
1 files changed, 284 insertions, 0 deletions
diff --git a/plugins/jetpack/modules/widgets/gravatar-profile.php b/plugins/jetpack/modules/widgets/gravatar-profile.php
new file mode 100644
index 00000000..c33e6996
--- /dev/null
+++ b/plugins/jetpack/modules/widgets/gravatar-profile.php
@@ -0,0 +1,284 @@
+<?php
+/**
+ * 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', __( 'Gravatar Profile', 'jetpack' ), array(
+ 'classname' => 'widget-grofile grofile',
+ 'description' => __( 'Display a mini version of your Gravatar Profile', 'jetpack' )
+ ) );
+
+ if ( is_admin() ) {
+ add_action( 'admin_footer-widgets.php', array( $this, 'admin_script' ) );
+ }
+ }
+
+ function widget( $args, $instance ) {
+ $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>.' ), 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 ) ) {
+ $gravatar_url = add_query_arg( 's', 500, $profile['thumbnailUrl'] ); // the default grav returned by grofiles is super small
+
+ wp_enqueue_style(
+ 'gravatar-profile-widget',
+ plugins_url( 'gravatar-profile.css', __FILE__ ),
+ array(),
+ '20120711'
+ );
+
+ ?>
+ <img src="<?php echo esc_url( $gravatar_url ); ?>" class="grofile-thumbnail no-grav" />
+ <div class="grofile-meta">
+ <h4><a href="<?php echo esc_url( $profile['profileUrl'] ); ?>"><?php echo esc_html( $profile['displayName'] ); ?></a></h4>
+ <p><?php echo esc_html( wp_kses( $profile['aboutMe'], array() ) ); ?></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'] );
+
+ ?>
+
+ <h4><a href="<?php echo esc_url( $profile['profileUrl'] ); ?>" class="grofile-full-link"><?php esc_html_e( 'View Full Profile &rarr;' ); ?></a></h4>
+
+ <?php
+
+ do_action( 'jetpack_stats_extra', 'widgets', 'grofile' );
+
+ } 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 esc_html_e( '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 echo esc_html( $personal_link['title'] ); ?>
+ </a>
+ </li>
+ <?php endforeach; ?>
+ </ul>
+
+ <?php
+ }
+
+ function display_accounts( $accounts = array() ) {
+ if ( empty( $accounts ) )
+ return;
+ ?>
+
+ <h4><?php esc_html_e( '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
+ }
+
+ 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'] : '';
+
+ ?>
+ <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 admin_url( 'profile.php' ); ?>" target="_blank" title="<?php esc_attr_e( 'Opens in new window', 'jetpack' ); ?>"><?php esc_html_e( 'Edit Your Profile', 'jetpack' )?></a> | <a href="http://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;
+ }
+
+ return $instance;
+ }
+
+ private function get_profile( $email ) {
+ $hashed_email = md5( strtolower( trim( $email ) ) );
+ $cache_key = 'widget-grofile-' . $hashed_email;
+
+ if( ! $profile = get_transient( $cache_key, 'widget' ) ) {
+
+ $profile_url = esc_url_raw( sprintf( '%s.gravatar.com/%s.php', ( is_ssl() ? 'https://secure' : 'http://www' ), $hashed_email ), array( 'http', 'https' ) );
+
+ $expire = 300;
+ $response = wp_remote_get( $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 = unserialize( $profile );
+
+ if ( is_array( $profile ) && ! empty( $profile['entry'] ) && is_array( $profile['entry'] ) ) {
+ $expire = 900; // cache for 15 minutes
+ $profile = $profile['entry'][0];
+ } else {
+ $profile = array();
+ }
+
+ } else {
+ $expire =
+ $profile = array();
+ set_transient( $cache_key . '-response-code', $response_code, $expire );
+ }
+
+ 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';
+ 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