-
Notifications
You must be signed in to change notification settings - Fork 3
/
functions.php
334 lines (298 loc) · 9.07 KB
/
functions.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
<?php
use Typecho\Widget;
use Widget\Options;
use Typecho\Widget\Helper\Form\Element\Text;
use Typecho\Widget\Helper\Form\Element\Radio;
use Typecho\Widget\Helper\Form\Element\Checkbox;
use Typecho\Widget\Helper\Form\Element\Textarea;
if (!defined('__TYPECHO_ROOT_DIR__')) exit;
function themeConfig($form)
{
$faviconUrl = new \Typecho\Widget\Helper\Form\Element\Text(
'faviconUrl',
null,
null,
_t('站点图标'),
_t('请填写站点图标地址, 如果不填则默认获取站点根路径的favicon.ico')
);
$form->addInput($faviconUrl);
$logoUrl = new Text(
'logoUrl',
null,
null,
_t('网站 LOGO'),
_t('请填写网站 LOGO 图片地址, 如果不填则显示文本标题')
);
$form->addInput($logoUrl);
$avatar = new Text(
'avatar',
null,
'/usr/themes/WaterDrop/static/images/avatar.png',
_t('作者头像'),
_t('请填写一个图片 URL 地址, 以修改作者头像')
);
$form->addInput($avatar);
$showEmail = new Radio(
'showEmail',
[
0 => _t('隐藏'),
1 => _t('显示')
],
0,
_t('显示邮箱')
);
$form->addInput($showEmail);
$showRSS = new Radio(
'showRSS',
[
0 => _t('隐藏'),
1 => _t('显示')
],
0,
_t('显示 RSS')
);
$form->addInput($showRSS);
$github = new Text(
'github',
null,
null,
_t('Github 主页'),
_t('请填写你的 Github 主页地址')
);
$form->addInput($github);
$weibo = new Text(
'weibo',
null,
null,
_t('微博 主页'),
_t('请填写你的 微博 主页地址')
);
$form->addInput($weibo);
$bilibili = new Text(
'bilibili',
null,
null,
_t('哔哩哔哩 主页'),
_t('请填写你的 哔哩哔哩 主页地址')
);
$form->addInput($bilibili);
$youtube = new Text(
'youtube',
null,
null,
_t('YouTube 主页'),
_t('请填写你的 YouTube 主页地址')
);
$form->addInput($youtube);
$notice = new Text(
'notice',
null,
null,
_t('公告设置'),
_t('显示在首页的公告文本,为空则不显示公告')
);
$form->addInput($notice);
$banners = new Textarea(
'banners',
null,
'[]',
_t('Banner 设置'),
_t('格式:[{"img":"图片地址1", "link":"跳转链接1"},{"img":"图片地址2", "link":"跳转链接2"}],其中,img为必填,link为选填,link为空则不跳转')
);
$form->addInput($banners);
$defaultCovers = new Textarea(
'defaultCovers',
null,
'[
"/usr/themes/WaterDrop/static/images/cover1.png",
"/usr/themes/WaterDrop/static/images/cover2.png",
"/usr/themes/WaterDrop/static/images/cover3.png",
"/usr/themes/WaterDrop/static/images/cover4.png"
]',
_t('文章默认封面'),
_t('当文章没有设置封面,且内容中也没有图片时,显示的默认封面,不填则使用主题内置的封面,建议使用网络稳定的图片地址')
);
$form->addInput($defaultCovers);
$sidebarBlockValue = [
'ShowRecentComments' => _t('显示最新评论'),
'ShowCategory' => _t('显示文章分类'),
'ShowTagCloud' => _t('显示标签云')
];
if (\Typecho\Plugin::exists('LZStat')) {
$sidebarBlockValue['ShowRank'] = _t('显示文章榜单');
}
$sidebarBlock = new Checkbox(
'sidebarBlock',
$sidebarBlockValue,
['ShowRecentComments', 'ShowCategory', 'ShowTagCloud'],
_t('侧边栏显示')
);
$form->addInput($sidebarBlock->multiMode());
$beian = new Text(
'beian',
null,
null,
_t('备案号'),
_t('请填入形如"粤ICP备xxx号-1"的备案号')
);
$form->addInput($beian);
$googleAd = new Textarea(
'googleAd',
null,
null,
_t('谷歌广告'),
_t('主题预设了三个Google AdSense广告位,不填则不显示广告,格式:{"publisher":"pub-xxx", "sidebar":"xxx","post1":"xxx", "post2":"xxx"},注意:由于SPA与Google Ads的兼容性存在问题,所以当使用Google Ads时,会禁用打开文章详情页的PJAX功能,需要牺牲一定的性能,请自行权衡')
);
$form->addInput($googleAd);
$footerJs = new Textarea(
'footerJs',
null,
null,
_t('底部JS'),
_t('请填入包括script标签JS代码,主要是统计、广告等相关的代码')
);
$form->addInput($footerJs);
}
/**
* 显示广告
*
* @param string $position 广告位置
* sidebar: 侧边栏
* post1: 文章页第一段
* post2: 文章页第二段
* @param string $classes 广告容器类名
* @param bool $showBg 是否显示背景
*/
function showGoogleAd($position, $classes = '', $showBg = false)
{
$style = '';
if ($showBg) {
$style = 'background-image:url(' . getDefaultCover() . ');background-size:cover;';
}
$googleAd = getGoogleAd();
if ($googleAd['showAd'] && !empty($googleAd[$position])) {
echo <<<EOF
<section class="rounded overflow-hidden {$classes}">
<ins class="adsbygoogle" style="display:block;text-align:center;{$style}" data-ad-client="ca-{$googleAd['publisher']}" data-ad-slot="{$googleAd[$position]}" data-ad-format="auto" data-full-width-responsive="true"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
</section>
EOF;
}
}
function getGravatar($email, $s = 96, $d = 'mp', $r = 'g')
{
preg_match_all('/((\d)*)@qq.com/', $email, $vai);
if (empty($vai['1']['0'])) {
$url = 'https://cdn.sep.cc/avatar/';
$url .= md5(strtolower(trim($email)));
$url .= "?s=$s&d=$d&r=$r";
} else {
$url = 'https://q2.qlogo.cn/headimg_dl?dst_uin=' . $vai['1']['0'] . '&spec=100';
}
return $url;
}
function getDefaultGravatar()
{
$options = Widget::widget(Options::class);
return '/usr/themes/' . $options->theme . '/static/images/avatar.png';
}
/**
* 获取文章封面
*/
function getPostCover($article)
{
if ($article->fields->cover) {
// 优先使用主动设置的文章封面
return $article->fields->cover;
}
preg_match_all("/\<img.*?src\=(\'|\")(.*?)(\'|\")[^>]*>/i", $article->content, $matches);
$imgCount = count($matches[0]);
if ($imgCount >= 1) {
// 如果没有设置封面,且文章内容中包含图片,使用第一张图片作为封面
return $matches[2][0];
}
// 如果没有设置封面,且文章内容中不包含图片,使用默认封面
return getDefaultCover();
}
/**
* 获取默认文章封面
*
* 如果主题配置中设置了默认文章封面,则随机使用一个配置中的默认文章封面;
* 如果没有设置默认文章封面,则使用主题目录下的post-default-cover.png作为默认文章封面。
* @return string 图片路径
*/
function getDefaultCover()
{
$options = Widget::widget(Options::class);
if ($options->defaultCovers) {
$postCovers = json_decode($options->defaultCovers);
if (!empty($postCovers)) {
return $postCovers[array_rand($postCovers)];
}
}
return '/usr/themes/' . $options->theme . '/static/images/post-default-cover.png';
}
function getGoogleAd()
{
static $settings = [];
if (!empty($settings)) {
return $settings;
}
$options = Widget::widget(Options::class);
if (empty($options->googleAd)) {
$settings = [
'showAd' => false
];
return $settings;
}
$googleAd = json_decode($options->googleAd, true);
if (!empty($googleAd) && !empty($googleAd['publisher']) && strpos($googleAd['publisher'], 'pub-') === 0) {
$settings = [
'showAd' => true,
'publisher' => $googleAd['publisher'],
'sidebar' => $googleAd['sidebar'],
'post1' => $googleAd['post1'],
'post2' => $googleAd['post2']
];
} else {
$settings = [
'showAd' => false
];
}
return $settings;
}
function themeFields($layout)
{
if (preg_match("/write-post.php/", $_SERVER['REQUEST_URI'])) {
$icon = new \Typecho\Widget\Helper\Form\Element\Text(
'cover',
null,
null,
_t('封面'),
_t('封面图片地址')
);
$layout->addItem($icon);
}
}
function getRedirectUrl($url)
{
if (!$url) {
return [
'hasUrl' => false
];
}
$options = Widget::widget(Options::class);
if (str_starts_with($url, $options->siteUrl)) {
return [
'hasUrl' => true,
'url' => $url
];
} else {
return [
'hasUrl' => true,
'url' => $options->siteUrl . '?target=' . urlencode($url)
];
}
}