-
Notifications
You must be signed in to change notification settings - Fork 591
/
Plugin.php
executable file
·414 lines (384 loc) · 19.4 KB
/
Plugin.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
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
<?php
if (!defined('__TYPECHO_ROOT_DIR__')) exit;
/**
* <a href="https://dt27.org/Slanted-for-Typecho/" target="_blank">Slanted 主题</a>扩展插件
*
* 浏览量统计部分来自 willin kan 的 Views 插件
*
* @package SlantedExtend
* @author DT27
* @version 1.0.0
* @link https://dt27.org/SlantedExtend/
*/
class SlantedExtend_Plugin implements Typecho_Plugin_Interface
{
/**
* 激活插件方法,如果激活失败,直接抛出异常
*
* @access public
* @return void
* @throws Typecho_Plugin_Exception
*/
public static function activate()
{
//独立页面顶部标题
Typecho_Plugin::factory('admin/write-page.php')->bottom = array('SlantedExtend_Plugin', 'headingJS');
//文章缩略图
Typecho_Plugin::factory('admin/write-post.php')->bottom = array('SlantedExtend_Plugin', 'thumbJS');
//原创文章
Typecho_Plugin::factory('admin/write-post.php')->option = array('SlantedExtend_Plugin', 'originalHtml');
//原创文章
Typecho_Plugin::factory('admin/write-post.php')->bottom = array('SlantedExtend_Plugin', 'originalJS');
//浏览量统计
Typecho_Plugin::factory('Widget_Archive')->beforeRender = array('SlantedExtend_Plugin', 'viewsCounter');
$db = Typecho_Db::get();
$prefix = $db->getPrefix();
// contents 表中若无 views 字段则添加
if (!array_key_exists('views', $db->fetchRow($db->select()->from('table.contents'))))
$db->query('ALTER TABLE `'. $prefix .'contents` ADD `views` INT(10) DEFAULT 0;');
}
/**
* 禁用插件方法,如果禁用失败,直接抛出异常
*
* @static
* @access public
* @return void
* @throws Typecho_Plugin_Exception
*/
public static function deactivate(){}
/**
* 获取插件配置面板
*
* @access public
* @param Typecho_Widget_Helper_Form $form 配置面板
* @return void
*/
public static function config(Typecho_Widget_Helper_Form $form)
{
}
/**
* 个人用户的配置面板
*
* @access public
* @param Typecho_Widget_Helper_Form $form
* @return void
*/
public static function personalConfig(Typecho_Widget_Helper_Form $form){}
/**
* 插件实现方法
*
* @access public
* @return void
*/
public static function slantedExtendFields()
{
}
/**
* 文章缩略图自定义字段扩展
*
* @access public
* @return void
*/
public static function thumbJS()
{
?>
<script>
$(document).ready(function () {
function attachDeleteEvent(el) {
$('button.btn-xs', el).click(function () {
if (confirm('<?php _e('确认要删除此字段吗?'); ?>')) {
$(this).parents('tr').fadeOut(function () {
$(this).remove();
});
}
});
}
var btn = $('i', $('#custom-field-expand'));
if (btn.hasClass('i-caret-right')) {
btn.removeClass('i-caret-right').addClass('i-caret-down');
$('#custom-field-expand').parent().removeClass('fold');
}
if (!$('[name="fieldNames[]"]').is("[value='thumbUrl']")) {
if($('[name="fieldNames[]"]').last().val()!=""){
var html = '<tr><td><input type="text" name="fieldNames[]" placeholder="<?php _e('字段名称'); ?>" class="text-s w-100"></td>'
+ '<td><select name="fieldTypes[]" id="">'
+ '<option value="str"><?php _e('字符'); ?></option>'
+ '<option value="int"><?php _e('整数'); ?></option>'
+ '<option value="float"><?php _e('小数'); ?></option>'
+ '</select></td>'
+ '<td><textarea name="fieldValues[]" placeholder="<?php _e('字段值'); ?>" class="text-s w-100" rows="2"></textarea></td>'
+ '<td><button type="button" class="btn btn-xs"><?php _e('删除'); ?></button></td></tr>',
el = $(html).hide().appendTo('#custom-field table tbody').fadeIn();
attachDeleteEvent(el);
}
$('[name="fieldTypes[]"]').last().find("option[value='str']").attr("selected",true).siblings().remove();
$('[name="fieldNames[]"]').last().attr('value', 'thumbUrl').attr('readonly','readonly');
$('[name="fieldValues[]"]').last().attr('placeholder','文章缩略图,推荐尺寸:300px*300px');
var html = '<tr><td><input type="text" name="fieldNames[]" placeholder="<?php _e('字段名称'); ?>" class="text-s w-100"></td>'
+ '<td><select name="fieldTypes[]" id="">'
+ '<option value="str"><?php _e('字符'); ?></option>'
+ '<option value="int"><?php _e('整数'); ?></option>'
+ '<option value="float"><?php _e('小数'); ?></option>'
+ '</select></td>'
+ '<td><textarea name="fieldValues[]" placeholder="<?php _e('字段值'); ?>" class="text-s w-100" rows="2"></textarea></td>'
+ '<td><button type="button" class="btn btn-xs"><?php _e('删除'); ?></button></td></tr>',
el = $(html).hide().appendTo('#custom-field table tbody').fadeIn();
attachDeleteEvent(el);
}else{
$("[value='thumbUrl']").parent().parent().children('td:eq(2)').children('textarea').attr('placeholder','文章缩略图,推荐尺寸:180px*180px');
}
});
</script>
<?php
}
/**
*
* 独立页面头部主副文字及短标题自定义字段扩展
*
* @access public
* @return void
*/
public static function headingJS()
{
?>
<script>
$(document).ready(function () {
function attachDeleteEvent(el) {
$('button.btn-xs', el).click(function () {
if (confirm('<?php _e('确认要删除此字段吗?'); ?>')) {
$(this).parents('tr').fadeOut(function () {
$(this).remove();
});
}
});
}
//默认展开自定义字段设置
var btn = $('i', $('#custom-field-expand'));
if (btn.hasClass('i-caret-right')) {
btn.removeClass('i-caret-right').addClass('i-caret-down');
$('#custom-field-expand').parent().removeClass('fold');
}
//不存在heading字段
if (!$('[name="fieldNames[]"]').is("[value='heading']")) {
if($('[name="fieldNames[]"]').last().val()!=""){
var html = '<tr><td><input type="text" name="fieldNames[]" placeholder="<?php _e('字段名称'); ?>" class="text-s w-100"></td>'
+ '<td><select name="fieldTypes[]" id="">'
+ '<option value="str"><?php _e('字符'); ?></option>'
+ '<option value="int"><?php _e('整数'); ?></option>'
+ '<option value="float"><?php _e('小数'); ?></option>'
+ '</select></td>'
+ '<td><textarea name="fieldValues[]" placeholder="<?php _e('字段值'); ?>" class="text-s w-100" rows="2"></textarea></td>'
+ '<td><button type="button" class="btn btn-xs"><?php _e('删除'); ?></button></td></tr>',
el = $(html).hide().appendTo('#custom-field table tbody').fadeIn();
attachDeleteEvent(el);
}
$('[name="fieldTypes[]"]').last().find("option[value='str']").attr("selected",true).siblings().remove();
$('[name="fieldNames[]"]').last().attr('value', 'heading').attr('readonly','readonly');
$('[name="fieldValues[]"]').last().attr('placeholder','Slanted主题头部主文字');
var html = '<tr><td><input type="text" name="fieldNames[]" placeholder="<?php _e('字段名称'); ?>" class="text-s w-100"></td>'
+ '<td><select name="fieldTypes[]" id="">'
+ '<option value="str"><?php _e('字符'); ?></option>'
+ '<option value="int"><?php _e('整数'); ?></option>'
+ '<option value="float"><?php _e('小数'); ?></option>'
+ '</select></td>'
+ '<td><textarea name="fieldValues[]" placeholder="<?php _e('字段值'); ?>" class="text-s w-100" rows="2"></textarea></td>'
+ '<td><button type="button" class="btn btn-xs"><?php _e('删除'); ?></button></td></tr>',
el = $(html).hide().appendTo('#custom-field table tbody').fadeIn();
attachDeleteEvent(el);
}else{
$("[value='heading']").parent().parent().children('td:eq(2)').children('textarea').attr('placeholder','Slanted主题头部主文字');
}
//不存在subheading字段
if (!$('[name="fieldNames[]"]').is("[value='subheading']")) {
if($('[name="fieldNames[]"]').last().val()!=""){
var html = '<tr><td><input type="text" name="fieldNames[]" placeholder="<?php _e('字段名称'); ?>" class="text-s w-100"></td>'
+ '<td><select name="fieldTypes[]" id="">'
+ '<option value="str"><?php _e('字符'); ?></option>'
+ '<option value="int"><?php _e('整数'); ?></option>'
+ '<option value="float"><?php _e('小数'); ?></option>'
+ '</select></td>'
+ '<td><textarea name="fieldValues[]" placeholder="<?php _e('字段值'); ?>" class="text-s w-100" rows="2"></textarea></td>'
+ '<td><button type="button" class="btn btn-xs"><?php _e('删除'); ?></button></td></tr>',
el = $(html).hide().appendTo('#custom-field table tbody').fadeIn();
attachDeleteEvent(el);
}
$('[name="fieldTypes[]"]').last().find("option[value='str']").attr("selected",true).siblings().remove();
$('[name="fieldNames[]"]').last().attr('value', 'subheading').attr('readonly','readonly');
$('[name="fieldValues[]"]').last().attr('placeholder','Slanted主题头部副文字');
var html = '<tr><td><input type="text" name="fieldNames[]" placeholder="<?php _e('字段名称'); ?>" class="text-s w-100"></td>'
+ '<td><select name="fieldTypes[]" id="">'
+ '<option value="str"><?php _e('字符'); ?></option>'
+ '<option value="int"><?php _e('整数'); ?></option>'
+ '<option value="float"><?php _e('小数'); ?></option>'
+ '</select></td>'
+ '<td><textarea name="fieldValues[]" placeholder="<?php _e('字段值'); ?>" class="text-s w-100" rows="2"></textarea></td>'
+ '<td><button type="button" class="btn btn-xs"><?php _e('删除'); ?></button></td></tr>',
el = $(html).hide().appendTo('#custom-field table tbody').fadeIn();
attachDeleteEvent(el);
}else{
$("[value='subheading']").parent().parent().children('td:eq(2)').children('textarea').attr('placeholder','Slanted主题头部副文字');
}
//不存在shotTitle字段
if (!$('[name="fieldNames[]"]').is("[value='shotTitle']")) {
if($('[name="fieldNames[]"]').last().val()!=""){
var html = '<tr><td><input type="text" name="fieldNames[]" placeholder="<?php _e('字段名称'); ?>" class="text-s w-100"></td>'
+ '<td><select name="fieldTypes[]" id="">'
+ '<option value="str"><?php _e('字符'); ?></option>'
+ '<option value="int"><?php _e('整数'); ?></option>'
+ '<option value="float"><?php _e('小数'); ?></option>'
+ '</select></td>'
+ '<td><textarea name="fieldValues[]" placeholder="<?php _e('字段值'); ?>" class="text-s w-100" rows="2"></textarea></td>'
+ '<td><button type="button" class="btn btn-xs"><?php _e('删除'); ?></button></td></tr>',
el = $(html).hide().appendTo('#custom-field table tbody').fadeIn();
attachDeleteEvent(el);
}
$('[name="fieldTypes[]"]').last().find("option[value='str']").attr("selected",true).siblings().remove();
$('[name="fieldNames[]"]').last().attr('value', 'shotTitle').attr('readonly','readonly');
$('[name="fieldValues[]"]').last().attr('placeholder','短标题,作为导航栏名称');
var html = '<tr><td><input type="text" name="fieldNames[]" placeholder="<?php _e('字段名称'); ?>" class="text-s w-100"></td>'
+ '<td><select name="fieldTypes[]" id="">'
+ '<option value="str"><?php _e('字符'); ?></option>'
+ '<option value="int"><?php _e('整数'); ?></option>'
+ '<option value="float"><?php _e('小数'); ?></option>'
+ '</select></td>'
+ '<td><textarea name="fieldValues[]" placeholder="<?php _e('字段值'); ?>" class="text-s w-100" rows="2"></textarea></td>'
+ '<td><button type="button" class="btn btn-xs"><?php _e('删除'); ?></button></td></tr>',
el = $(html).hide().appendTo('#custom-field table tbody').fadeIn();
attachDeleteEvent(el);
}else{
$("[value='shotTitle']").parent().parent().children('td:eq(2)').children('textarea').attr('placeholder','短标题,作为显示在导航栏的名称');
}
});
</script>
<?php
}
/**
*
* 原创文章选项
*
* @access public
* @return void
*/
public static function originalHtml(){
echo '<section class="typecho-post-option"><label class="typecho-label" for="token-input-tags">原创文章</label><p><span><input type="radio" id="isOriginal-1" value="1" name="isOriginal"><label for="isOriginal-1">是</label></span> <span><input type="radio" checked="true" id="isOriginal-0" value="0" name="isOriginal"><label for="isOriginal-0">否</label></span></p><p class="description">原创文章将在文章底部显示转载提示信息</p></section>';
}
/**
*
* 原创文章选项
*
* @access public
* @return void
*/
public static function originalJS(){
?>
<script>
$(document).ready(function () {
var isOriginalInput = $('input[value=isOriginal]');
if($(isOriginalInput).length>0){
var isOriginalValue = $(isOriginalInput).parent().parent().find('textarea');
$(isOriginalInput).parent().parent().hide();
if($(isOriginalValue).val()=='0'){
$('#isOriginal-0').attr('checked',true);
}else{
$('#isOriginal-1').attr('checked',true);
}
$('#isOriginal-1').click(function () {
$(isOriginalValue).val('1');
});
$('#isOriginal-0').click(function () {
$(isOriginalValue).val('0');
});
}else {
var oHtml = '<div id="isOriginal"><input type="hidden" name="fieldNames[]" value="isOriginal"><input type="hidden" name="fieldTypes[]" value="int"><input id="isOriginalValue" type="hidden" name="fieldValues[]" value="0"></div>';
$(oHtml).appendTo('#custom-field table tbody');
$('#isOriginal-1').click(function () {
$('#isOriginalValue').val('1');
});
$('#isOriginal-0').click(function () {
$('#isOriginalValue').val('0');
});
}
});
</script>
<?php
}
/**
* 加入 beforeRender
*
* @access public
* @return void
*/
public static function viewsCounter()
{
// 访问计数
if (Typecho_Widget::widget('Widget_Archive')->is('single')) {
$db = Typecho_Db::get();
$cid = Typecho_Widget::widget('Widget_Archive')->cid;
$row = $db->fetchRow($db->select('views')->from('table.contents')->where('cid = ?', $cid));
$db->query($db->update('table.contents')->rows(array('views' => (int)$row['views']+1))->where('cid = ?', $cid));
}
}
/**
* 输出访问次数
*
* 语法: Views_Plugin::theViews();
* 输出: '访问: xx,xxx 次'
*
* 语法: Views_Plugin::theViews('有 ', ' 次点击');
* 输出: '有 xx,xxx 次点击'
*
* @access public
* @param string $before 前字串
* @param string $after 后字串
* @param bool $echo 是否显示 (0 用于运算,不显示)
* @return string
*/
public static function theViews($before = '浏览量: ', $after = ' ', $echo = 1)
{
$db = Typecho_Db::get();
$cid = Typecho_Widget::widget('Widget_Archive')->cid;
$row = $db->fetchRow($db->select('views')->from('table.contents')->where('cid = ?', $cid));
if ($echo)
echo $before, number_format($row['views']), $after;
else
return $row['views'];
}
/**
* 输出最受欢迎文章
*
* 语法: Views_Plugin::theMostViewed();
*
* @access public
* @param int $limit 文章数目
* @param int $show 是否显示浏览量 1 是, 0 否
* @param string $before 前字串
* @param string $after 后字串
* @return string
*/
public static function theMostViewed($limit = 10, $show = 1, $before = ' ( 浏览量: ', $after = ' ) ')
{
$db = Typecho_Db::get();
$options = Typecho_Widget::widget('Widget_Options');
$limit = is_numeric($limit) ? $limit : 10;
$posts = $db->fetchAll($db->select()->from('table.contents')
->where('type = ? AND status = ? AND password IS NULL', 'post', 'publish')
->order('views', Typecho_Db::SORT_DESC)
->limit($limit)
);
if ($posts) {
foreach ($posts as $post) {
$result = Typecho_Widget::widget('Widget_Abstract_Contents')->push($post);
$post_views = number_format($result['views']);
$post_title = htmlspecialchars($result['title']);
$permalink = $result['permalink'];
echo "<li><a href='$permalink' title='$post_title'>$post_title</a>";
if($show)
echo "<span style='font-size:70%'>$before $post_views $after</span></li>\n";
else
echo "</li>\n";
}
} else {
echo "<li>N/A</li>\n";
}
}
}