2012-04-08 22:50:48 +00:00
< ? php
/**
* Name : Gravatar Support
* Description : If there is no avatar image for a new user or contact this plugin will look for one at Gravatar .
2012-07-14 19:11:43 +00:00
* Version : 1.1
2012-04-08 22:50:48 +00:00
* Author : Klaus Weidenbach < http :// friendica . dszdw . net / profile / klaus >
*/
/**
* Installs the plugin hook
*/
function gravatar_install () {
register_hook ( 'avatar_lookup' , 'addon/gravatar/gravatar.php' , 'gravatar_lookup' );
2012-07-14 19:11:43 +00:00
logger ( " registered gravatar in avatar_lookup hook " );
2012-04-08 22:50:48 +00:00
}
/**
* Removes the plugin hook
*/
function gravatar_uninstall () {
unregister_hook ( 'avatar_lookup' , 'addon/gravatar/gravatar.php' , 'gravatar_lookup' );
2012-07-14 19:11:43 +00:00
logger ( " unregistered gravatar in avatar_lookup hook " );
2012-04-08 22:50:48 +00:00
}
/**
* Looks up the avatar at gravatar . com and returns the URL .
*
* @ param $a array
* @ param & $b array
*/
function gravatar_lookup ( $a , & $b ) {
$default_avatar = get_config ( 'gravatar' , 'default_img' );
$rating = get_config ( 'gravatar' , 'rating' );
// setting default value if nothing configured
if ( ! $default_avatar )
2012-04-10 23:03:22 +00:00
$default_avatar = 'identicon' ; // default image will be a random pattern
2012-04-08 22:50:48 +00:00
if ( ! $rating )
$rating = 'g' ; // suitable for display on all websites with any audience type
$hash = md5 ( trim ( strtolower ( $b [ 'email' ])));
$url = 'http://www.gravatar.com/avatar/' . $hash . '.jpg' ;
$url .= '?s=' . $b [ 'size' ] . '&r=' . $rating ;
if ( $default_avatar != " gravatar " )
$url .= '&d=' . $default_avatar ;
2012-04-10 23:03:22 +00:00
$b [ 'url' ] = $url ;
$b [ 'success' ] = true ;
2012-04-08 22:50:48 +00:00
}
/**
* Display admin settings for this addon
*/
function gravatar_plugin_admin ( & $a , & $o ) {
2012-12-22 20:36:35 +00:00
$t = get_markup_template ( " admin.tpl " , " addon/gravatar/ " );
2012-04-08 22:50:48 +00:00
$default_avatar = get_config ( 'gravatar' , 'default_img' );
$rating = get_config ( 'gravatar' , 'rating' );
// set default values for first configuration
if ( ! $default_avatar )
$default_avatar = 'identicon' ; // pseudo-random geometric pattern based on email hash
if ( ! $rating )
$rating = 'g' ; // suitable for display on all websites with any audience type
// Available options for the select boxes
$default_avatars = array (
2012-04-10 23:03:22 +00:00
'mm' => t ( 'generic profile image' ),
'identicon' => t ( 'random geometric pattern' ),
'monsterid' => t ( 'monster face' ),
'wavatar' => t ( 'computer generated face' ),
'retro' => t ( 'retro arcade style face' ),
2012-04-08 22:50:48 +00:00
);
$ratings = array (
'g' => 'g' ,
'pg' => 'pg' ,
'r' => 'r' ,
'x' => 'x'
);
2012-07-14 19:11:43 +00:00
// Check if Libravatar is enabled and show warning
$r = q ( " SELECT * FROM `addon` WHERE `name` = '%s' and `installed` = 1 " ,
dbesc ( 'libravatar' )
);
if ( count ( $r )) {
$o = '<h5>' . t ( 'Information' ) . '</h5><p>' . t ( 'Libravatar addon is installed, too. Please disable Libravatar addon or this Gravatar addon.<br>The Libravatar addon will fall back to Gravatar if nothing was found at Libravatar.' ) . '</p><br><br>' ;
}
// output Gravatar settings
$o .= '<input type="hidden" name="form_security_token" value="' . get_form_security_token ( " gravatarsave " ) . '">' ;
2012-12-25 20:25:09 +00:00
$o .= replace_macros ( $t , array (
2012-04-08 22:50:48 +00:00
'$submit' => t ( 'Submit' ),
'$default_avatar' => array ( 'avatar' , t ( 'Default avatar image' ), $default_avatar , t ( 'Select default avatar image if none was found at Gravatar. See README' ), $default_avatars ),
'$rating' => array ( 'rating' , t ( 'Rating of images' ), $rating , t ( 'Select the appropriate avatar rating for your site. See README' ), $ratings ),
));
}
/**
* Save admin settings
*/
function gravatar_plugin_admin_post ( & $a ) {
check_form_security_token ( 'gravatarsave' );
$default_avatar = (( x ( $_POST , 'avatar' )) ? notags ( trim ( $_POST [ 'avatar' ])) : 'identicon' );
$rating = (( x ( $_POST , 'rating' )) ? notags ( trim ( $_POST [ 'rating' ])) : 'g' );
set_config ( 'gravatar' , 'default_img' , $default_avatar );
set_config ( 'gravatar' , 'rating' , $rating );
info ( t ( 'Gravatar settings updated.' ) . EOL );
}
?>