feat: 完成三方平台发布管理

This commit is contained in:
augushong
2025-05-05 10:29:49 +08:00
parent d27772ef03
commit 70b17cbd10
8 changed files with 188 additions and 96 deletions

View File

@@ -235,6 +235,26 @@ class Post extends Common
return $this->success('保存成功', url('index', ['type' => $model_post->getData('type')]));
}
public function setPostPlatformData()
{
$type = $this->request->param('type', 1);
$value = $this->request->param('value', '');
$post_id = $this->request->param('post_id', 0);
$model_post = ModelPost::find($post_id);
if (empty($model_post)) {
return json_message('文章不存在');
}
$post_platform_data = $model_post->post_platform_data_array;
$post_platform_data[$type] = $value;
$model_post->post_platform_data = json_encode($post_platform_data);
$model_post->post_platform_status = ',' . implode(',', array_keys($post_platform_data)) . ',';
$model_post->save();
return htmx()->message('文章设置成功');
}
/**
* 删除指定资源.
*

View File

@@ -1,4 +1,5 @@
<?php
// +----------------------------------------------------------------------
// | ThinkPHP [ WE CAN DO IT JUST THINK ]
// +----------------------------------------------------------------------
@@ -14,50 +15,55 @@
use app\model\Admin;
use app\model\AdminPermission;
use app\model\SystemConfig;
use think\facade\Cache;
use League\Flysystem\Util\MimeType;
use think\File;
use think\facade\Filesystem;
use app\model\UploadFiles;
use think\facade\Session;
use League\Flysystem\Util\MimeType;
use think\app\Url;
use think\facade\Cache;
use think\facade\Filesystem;
use think\facade\Session;
use think\File;
use think\Response;
use think\response\Htmx;
function json_message($data = [], $code = 0, $msg = '')
{
if (is_string($data)) {
if (strpos($data, 'http') === 0 || strpos($data, '/') === 0) {
$data = [
'jump_to_url' => $data
'jump_to_url' => $data,
];
} else {
$code = $code === 0 ? 500 : $code;
$msg = $data;
$data = [];
}
} elseif ($data instanceof Url) {
$data = [
'jump_to_url' => (string)$data
'jump_to_url' => (string) $data,
];
}
return json([
'code' => $code,
'msg' => $msg,
'data' => $data
'data' => $data,
]);
}
function htmx($data = '', $code = 200) : Htmx
{
return Response::create($data, 'htmx', $code);
}
function get_system_config($name = '', $default = '')
{
$list = Cache::get('system_config');
if (empty($list)) {
try {
$list = SystemConfig::column('value', 'name');
Cache::set('system_config', $list);
} catch (\Throwable $th) {
} catch (Throwable $th) {
return $default;
}
}
@@ -75,7 +81,6 @@ function get_system_config($name = '', $default = '')
function get_source_link($url)
{
if (empty($url)) {
$url = '/static/images/avatar.png';
}
@@ -90,6 +95,7 @@ function get_source_link($url)
if (empty($resource_domain)) {
$resource_domain = request()->domain();
}
return $resource_domain . '/' . $url;
}
}
@@ -100,12 +106,12 @@ function de_source_link($url)
if (strpos($url, $domain) === 0) {
return str_replace($domain, '', $url);
}
return false;
}
function save_url_file($url, $type)
{
$file_data = geturl($url);
$mime_type = MimeType::detectByContent($file_data);
@@ -130,16 +136,17 @@ function save_url_file($url, $type)
$model_file->save_name = $save_name;
$model_file->save();
unlink($temp_file);
return $save_name;
}
function geturl($url)
{
$headerArray = array();
$headerArray = [];
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headerArray);
$output = curl_exec($ch);
@@ -148,48 +155,41 @@ function geturl($url)
return $output;
}
function posturl($url, $data)
{
$data = json_encode($data);
$headerArray = array();
$headerArray = [];
$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, $url);
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, FALSE);
curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, FALSE);
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, false);
curl_setopt($curl, CURLOPT_POST, 1);
curl_setopt($curl, CURLOPT_POSTFIELDS, $data);
curl_setopt($curl, CURLOPT_HTTPHEADER, $headerArray);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
$output = curl_exec($curl);
curl_close($curl);
return $output;
}
function format_size($filesize)
{
if ($filesize >= 1073741824) {
$filesize = round($filesize / 1073741824 * 100) / 100 . ' GB';
} elseif ($filesize >= 1048576) {
$filesize = round($filesize / 1048576 * 100) / 100 . ' MB';
} elseif ($filesize >= 1024) {
$filesize = round($filesize / 1024 * 100) / 100 . ' KB';
} else {
$filesize = $filesize . ' 字节';
}
return $filesize;
}
/**
* 数组层级缩进转换
* 数组层级缩进转换.
* @param array $array 源数组
* @param int $pid
* @param int $level
@@ -197,7 +197,6 @@ function format_size($filesize)
*/
function array2level($array, $pid = 0, $level = 1)
{
static $list = [];
if ($level == 0) {
$list = [];
@@ -217,7 +216,6 @@ function array2level($array, $pid = 0, $level = 1)
return $list;
}
function check_permission($key, $admin_id = null)
{
if (is_null($admin_id)) {
@@ -238,7 +236,6 @@ function check_permission($key, $admin_id = null)
return true;
}
$cache_key = 'permission_' . $key;
$model_permission = Cache::get($cache_key);
@@ -249,7 +246,7 @@ function check_permission($key, $admin_id = null)
if (empty($model_permission)) {
$model_permission = AdminPermission::create([
'key' => $key
'key' => $key,
]);
Cache::set($cache_key, $model_permission, 60);
}
@@ -261,29 +258,24 @@ function check_permission($key, $admin_id = null)
return false;
}
/**
* 多应用下的url生成器
* 在这里的@后面跟随的首先被认为成应用名而不是源文档的域名(或子域名)
* 程序会尝试找到应用对应的域名来生成地址,如果没找到,则按照源文档的逻辑执行
* 程序会尝试找到应用对应的域名来生成地址,如果没找到,则按照源文档的逻辑执行.
* @param string $url
* @param array $vars
* @param boolean $suffix
* @param boolean $domain
* @param bool $suffix
* @param bool $domain
* @return void
*/
function app_url(string $url = '', array $vars = [], $suffix = true, $domain = false)
{
return url($url, $vars, $suffix, $domain);
}
if (!function_exists('ua_htmlspecialchars')) {
function ua_htmlspecialchars($string)
{
if (is_null($string)) {
$string = '';
}
@@ -295,7 +287,6 @@ if (!function_exists('ua_htmlspecialchars')) {
if (!function_exists('ua_htmlentities')) {
function ua_htmlentities($string)
{
if (is_null($string)) {
$string = '';
}
@@ -304,7 +295,8 @@ if (!function_exists('ua_htmlentities')) {
}
}
function show_time_ago($timestamp) {
function show_time_ago($timestamp)
{
$current_time = new DateTime();
$target_time = new DateTime("@$timestamp");
$interval = $current_time->diff($target_time);

View File

@@ -264,4 +264,13 @@ class Post extends Base
return $value;
}
public function getPostPlatformDataArrayAttr()
{
$data = $this->getData('post_platform_data');
if (empty($data)) {
return [];
}
return json_decode($data, true);
}
}

View File

@@ -1,7 +1,7 @@
<?php
use think\facade\Env;
use think\facade\App;
use think\facade\Env;
return [
// 默认使用的数据库连接配置
@@ -18,7 +18,6 @@ return [
// 时间字段取出后的默认时间格式
'datetime_format' => 'Y-m-d H:i:s',
// 数据库连接配置信息
'connections' => [
'mysql' => [
@@ -52,11 +51,11 @@ return [
// 是否严格检查字段是否存在
'fields_strict' => true,
// 是否需要断线重连
'break_reconnect' => false,
'break_reconnect' => true,
// 监听SQL
'trigger_sql' => true,
// 开启字段缓存
'fields_cache' => true,
'fields_cache' => false,
],
'sqlite' => [
@@ -95,7 +94,7 @@ return [
'sql_explain' => false,
// 是否需要断线重连
'break_reconnect' => false,
'fields_cache' => true
'fields_cache' => false,
],
// 更多的数据库配置信息
],

View File

@@ -0,0 +1,33 @@
<?php
namespace think\response;
use think\Response;
class Htmx extends Response
{
protected $triggerOptions = [];
public function addTrigger($name, $data = null)
{
$this->triggerOptions[$name] = $data;
return $this;
}
public function message($message)
{
$this->triggerOptions['layerMsg'] = ['type' => 1, 'title' => $message];
return $this;
}
protected function output($data)
{
$this->header([
'HX-Trigger' => json_encode($this->triggerOptions),
]);
return parent::output($data);
}
}

File diff suppressed because one or more lines are too long

View File

@@ -3,6 +3,7 @@
<link rel="stylesheet" href="/static/lib/layui/css/layui.css">
<link rel="stylesheet" href="/static/css/{$Request.cookie.skin_name|default='skin-1'}.css">
<link rel="stylesheet" href="/static/css/common.css">
<script src="/static/lib/htmx-v2.0.4/htmx.min.js"></script>
<script src="/static/lib/jquery/jquery-3.4.1.min.js"></script>
<script src="/static/lib/jquery/jquery.cookie.js"></script>
<script src="/static/lib/layui/layui.js"></script>

View File

@@ -12,6 +12,7 @@
content="width=device-width, initial-scale=1.0"
>
<title>{$post.title}</title>
<script src="/static/lib/htmx-v2.0.4/htmx.min.js"></script>
<script src="/static/lib/jquery/jquery-3.4.1.min.js"></script>
<script src="/static/lib/jquery/jquery.cookie.js"></script>
<script src="/static/lib/layui/layui.js"></script>
@@ -40,12 +41,11 @@
position: fixed;
right: 0;
top: 0;
margin: 15px;
padding: 15px;
border-radius: 5;
border: 1px solid #e8e8e8;
background: #fff;
overflow: auto;
}
.options-box>a,
@@ -65,6 +65,12 @@
color: #333;
font-size: 12px;
}
.post-platform-item a,
.post-platform-item a:hover,
.post-platform-item a:visited {
color: #fff;
}
</style>
</head>
@@ -154,16 +160,41 @@
class="post-platform-label"
style="text-align: left;"
>
<span>
{$vo.title}
</span>
<a
href="{$vo.value}"
target="_blank"
>
{$vo.title}
</a>
<a
style="margin-left: 6px;"
href="{$vo.home_url}"
title="{$vo.account}"
target=" _blank"
>
主页
</a>
{empty name='$post.post_platform_data_array[$vo.id]'}
<span style="margin-left: 6px;">文章:</span>
{else /}
<a
href="{$post.post_platform_data_array[$vo.id]}"
target=" _blank"
style="margin-left: 6px;"
>文章:</a>
{/empty}
</div>
<div class="post-platform-label">
<input
type="text"
name="post-platform[{$vo.id}]"
name="value"
value="{$post.post_platform_data_array[$vo.id]|default=''}"
placeholder="请输入文章链接"
hx-post="{:url('setPostPlatformData')}"
hx-vals="js:{post_id:{$post.id},type:{$vo.id}}"
>
</div>
</div>
@@ -302,6 +333,12 @@
});
};
$('textarea[autoHeight]').autoHeight();
});
layui.use(['element', 'layer', 'util'], function () { });
$('body').on('layerMsg', function (evt) {
layui.layer.msg(evt.originalEvent.detail.title);
})
</script>
</body>