Jony/core/short.php

89 lines
3.5 KiB
PHP
Raw Normal View History

2021-01-29 15:38:41 +00:00
<?php
function _parseShortCode($content)
{
/* 过滤网易云音乐歌单 */
2021-02-05 10:27:44 +00:00
if (preg_match('/\[music-list\s{0,}id="\d{0,}"\s{0,}\/\]/SU', $content)) {
2021-01-29 15:38:41 +00:00
$content = preg_replace(
2021-02-05 10:27:44 +00:00
'/\[music-list\s{0,}id="(\d{0,})"\s{0,}\/]/SU',
2021-01-29 15:38:41 +00:00
'<iframe width="330" height="450" src="//music.163.com/outchain/player?type=0&id=$1&auto=0&height=430"></iframe>',
$content
);
}
/* 过滤网易云音乐单首歌 */
2021-02-05 10:27:44 +00:00
if (preg_match('/\[music\s{0,}id="\d{0,}"\s{0,}\/\]/SU', $content)) {
2021-01-29 15:38:41 +00:00
$content = preg_replace(
2021-02-05 10:27:44 +00:00
'/\[music\s{0,}id="(\d{0,})"\s{0,}\/\]/SU',
2021-01-29 15:38:41 +00:00
'<iframe width="330" height="86" src="//music.163.com/outchain/player?type=2&id=$1&auto=0&height=66"></iframe>',
$content
);
}
2021-02-05 10:27:44 +00:00
/* 过滤dplayer播放器 */
if (preg_match('/\[dplayer\s{0,}src=".{0,}"\s{0,}\/\]/SU', $content)) {
$player = Helper::options()->JCustomPlayer ? Helper::options()->JCustomPlayer : '/usr/themes/Joe/library/player.php?url=';
2021-02-01 13:24:49 +00:00
$content = preg_replace(
2021-02-05 10:27:44 +00:00
'/\[dplayer\s{0,}src="(.{0,})"\s{0,}\/\]/SU',
'<iframe class="joe_detail__article-player block" allowfullscreen="true" src="' . $player . '$1"></iframe>',
2021-02-01 13:24:49 +00:00
$content
);
}
2021-02-05 10:27:44 +00:00
/* 过滤bilibili播放器 */
if (preg_match('/\[bilibili\s{0,}bvid="\w{0,}"\s{0,}\/\]/SU', $content)) {
2021-02-01 13:24:49 +00:00
$content = preg_replace(
2021-02-05 10:27:44 +00:00
'/\[bilibili\s{0,}bvid="(\w{0,})"\s{0,}\/\]/SU',
'<iframe class="joe_detail__article-player block" allowfullscreen="true" src="//player.bilibili.com/player.html?bvid=$1"></iframe>',
2021-02-01 13:24:49 +00:00
$content
);
}
2021-02-05 02:29:26 +00:00
/* 过滤完成任务勾选 */
2021-02-05 10:27:44 +00:00
if (preg_match('/\[x\]/SU', $content)) {
2021-02-05 02:29:26 +00:00
$content = preg_replace(
2021-02-05 10:27:44 +00:00
'/\[x\]/SU',
2021-02-05 02:29:26 +00:00
'<input type="checkbox" class="joe_detail__article-checkbox" checked disabled></input>',
$content
);
}
/* 过滤未完成任务勾选 */
2021-02-05 10:27:44 +00:00
if (preg_match('/\[\s{1}\]/SU', $content)) {
2021-02-05 02:29:26 +00:00
$content = preg_replace(
2021-02-05 10:27:44 +00:00
'/\[\s{1}\]/SU',
2021-02-05 02:29:26 +00:00
'<input type="checkbox" class="joe_detail__article-checkbox" disabled></input>',
$content
);
}
2021-02-05 10:27:44 +00:00
/* 过滤默认卡片 */
if (preg_match('/\[card-default\s{0,}width=".{0,}"\s{0,}label=".{0,}"\].{0,}\[\/card-default\]/sSU', $content)) {
$content = preg_replace(
'/\[card-default\s{0,}width="(.{0,})"\s{0,}label="(.{0,})"\](.{0,})\[\/card-default\]/sSU',
'<span class="joe_detail__article-card block" style="width: $1">
<span class="title block">$2</span>
<span class="content block">$3</span>
</span>',
$content
);
}
/* 过滤消息提示 */
if (preg_match('/\[message\s{0,}type="success|info|warning|error"\s{0,}\].{0,}\[\/message\]/sSU', $content)) {
$content = preg_replace(
'/\[message\s{0,}type="(success|info|warning|error)"\s{0,}\](.{0,})\[\/message\]/sSU',
'<span class="joe_detail__article-message block $1">
<span class="icon"></span>
<span class="content">$2</span>
</span>',
$content
);
}
2021-02-05 12:12:22 +00:00
/* 过滤居中标题 */
if (preg_match('/\[mtitle\].{0,}\[\/mtitle\]/sSU', $content)) {
$content = preg_replace(
'/\[mtitle\](.{0,})\[\/mtitle\]/sSU',
'<span class="joe_detail__article-mtitle">
<span class="text">$1</span>
</span>',
$content
);
}
2021-02-05 10:27:44 +00:00
2021-01-29 15:38:41 +00:00
return $content;
}