forked from typecho-fans/plugins
-
Notifications
You must be signed in to change notification settings - Fork 25
/
GravatarCache.php
executable file
·219 lines (198 loc) · 7.45 KB
/
GravatarCache.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
<?php
/**
* Gravatar 头像缓存插件
*
* @package GravatarCache
* @author Byends
* @version 2.0.2
* @link http://www.byends.com
*/
class GravatarCache implements Typecho_Plugin_Interface
{
/**
* 激活插件方法,如果激活失败,直接抛出异常
*
* @access public
* @return void
* @throws Typecho_Plugin_Exception
*/
public static function activate()
{
Typecho_Plugin::factory('Widget_Abstract_Comments')->gravatar = array('GravatarCache', 'getGravatar');
}
/**
* 禁用插件方法,如果禁用失败,直接抛出异常
*
* @static
* @access public
* @return void
* @throws Typecho_Plugin_Exception
*/
public static function deactivate()
{
self::deleteFile();
}
/**
* 获取插件配置面板
*
* @access public
* @param Typecho_Widget_Helper_Form $form 配置面板
* @return void
*/
public static function config(Typecho_Widget_Helper_Form $form)
{
$timeCache = new Typecho_Widget_Helper_Form_Element_Text('timeCache', NULL, '1209600', _t('缓存时间'),_t('缓存时间,默认 14天 = 1209600 秒'));
$timeCache->input->setAttribute('class', 'mini');
$form->addInput($timeCache->addRule('required', _t('必须填写缓存时间'))->addRule('isInteger', _t('缓存时间必须是整数')));
$dir = new Typecho_Widget_Helper_Form_Element_Text('dir', null, '/usr/uploads/avatarCache/', _t('存放路径'), _t('缓存头像存放的路径,请确保第一个目录可写!'));
$form->addInput($dir->addRule('required', _t('必须填写缓存目录')));
$delCache= new Typecho_Widget_Helper_Form_Element_Radio( 'delCache', array( 'delY' => '是', 'delN' => '否' ), 'delY', '删除缓存',_t('禁用插件时是否删除缓存头像和目录') );
$form->addInput($delCache);
return _t('请到插件配置里设置相应选项');
}
/**
* 个人用户的配置面板
*
* @access public
* @param Typecho_Widget_Helper_Form $form
* @return void
*/
public static function personalConfig(Typecho_Widget_Helper_Form $form){}
/**
* 插件实现方法
*
* @param $size
* @param $rating
* @param $default
* @param $comments
*/
public static function getGravatar($size, $rating, $default, $comments)
{
$imgUrl = self::getGravatarCache($comments->mail, $comments->request->isSecure(), $size, $rating, $default);
echo '<img class="avatar" src="'.$imgUrl.' "alt="'.$comments->author.'" width="'.$size.'" height="'.$size.'" />';
}
/**
* 外部调用方法
*
* @param $mail
* @param bool $isSecure
* @param int $size
* @param string $rating
* @param string $default
* @return string
* @throws exception
*/
public static function getGravatarCache($mail, $isSecure = false, $size = 32, $rating = 'G', $default = 'mm')
{
$option = Typecho_Widget::widget('Widget_Options')->plugin('GravatarCache');
$siteUrl = Helper::options()->siteUrl;
$dir = __TYPECHO_ROOT_DIR__ . DIRECTORY_SEPARATOR;
$referer = "http://www.gravatar.com";
$path = $option->dir;
$path = substr($path, 0, 1) == '/' ? substr($path, 1) : $path;
$path = substr($path, -1, 1) != '/' ? $path.'/' : $path;
$file = $dir.$path.'default.jpg';
$default = empty($default) ? 'mm' : $default;
$default = $default == 'mm' ? $default : urlencode($default);
if(!self::mkdirs(dirname($file))){
throw new exception('GravatarCache 目录创建失败,请检查指定的根目录是否可写' );
}
/** 如果默认的 default.jpg不存在,则下载 gravatar 默认的头像到本地*/
if(!file_exists($file)){
$avatar = 'http://www.gravatar.com/avatar/00000000000000000000000000000000?d='.$default.'&s='.$size.'&r='.$rating;
if(!self::download($avatar, $referer, $file)) copy($avatar, $file);
}
$timeCache = $option->timeCache;
$defaultMail = empty($mail) ? 'default' : md5( strtolower( $mail ) );
$imgUrl = $siteUrl.$path.$defaultMail.'.jpg';
$baseFile = $dir.$path.$defaultMail.'.jpg';
if(!file_exists($baseFile) || (time() - filemtime($baseFile)) > $timeCache){
$host = $isSecure ? 'https://secure.gravatar.com' : 'http://www.gravatar.com';
$avatar = $host.'/avatar/'.$defaultMail.'?d='.$default.'&s='.$size.'&r='.$rating;
if(!self::download($avatar, $referer, $baseFile)) copy($avatar, $baseFile);
if(filesize($baseFile) == 911 && filesize($file) != 911) copy($file, $baseFile);
}
return $imgUrl;
}
/**
* 生成多级目录
*
* @param $dir
* @return bool
*/
public static function mkdirs($dir)
{
return is_dir($dir) or (self::mkdirs(dirname($dir)) and mkdir($dir, 0777));
}
/**
* 禁用插件时同时删除缓存头像
*
* @access public
* @return void
*/
public static function deleteFile()
{
$option = Typecho_Widget::widget('Widget_Options')->plugin('GravatarCache');
$path = __TYPECHO_ROOT_DIR__ . DIRECTORY_SEPARATOR. $option->dir;
if (substr($path,-1)!='/') {$path.='/';}
if( $option->delCache == 'delY' ){
foreach (glob( $path. '*.jpg') as $filename) {
unlink($filename);
}
$sysDir = array( 'usr', 'uploads', 'themes', 'plugins' );
$dirArray = explode("/", $path);
array_pop($dirArray);
$currentDir = array_pop($dirArray);
if(!in_array( $currentDir, $sysDir)) { rmdir($path); }
}
}
/**
* 下载头像到本地
*
* @param $url
* @param $referer
* @param $imagePath
* @return bool
*/
public static function download( $url, $referer, $imagePath )
{
$fpLocal = @fopen( $imagePath, 'w' );
if( !$fpLocal ) {
return false;
}
if( is_callable('curl_init') ) {
$ch = curl_init();
curl_setopt( $ch, CURLOPT_URL, $url );
curl_setopt( $ch, CURLOPT_REFERER, $referer );
curl_setopt( $ch, CURLOPT_CONNECTTIMEOUT, 10 );
curl_setopt( $ch, CURLOPT_FOLLOWLOCATION, 1 );
curl_setopt( $ch, CURLOPT_HEADER, 0 );
curl_setopt( $ch, CURLOPT_FILE, $fpLocal );
if( !curl_exec($ch) ) {
fclose( $fpLocal );
curl_close( $ch );
return false;
}
curl_close( $ch );
}else {
$opts = array(
'http' => array(
'method' => "GET",
'header' => "Referer: $referer\r\n"
)
);
$context = stream_context_create( $opts );
$fpRemote = @fopen( $url, 'r', false, $context );
if( !$fpRemote ) {
fclose( $fpLocal );
return false;
}
while( !feof( $fpRemote ) ) {
fwrite( $fpLocal, fread($fpRemote, 8192) );
}
fclose( $fpRemote );
}
fclose( $fpLocal );
return true;
}
}