FastMovieAI AI短剧创作平台 二开基线

- 源码: xhadmincn/FastMovieAI (Apache 2.0)
- 二开: Docker部署, Swoole改Select, route.php修复, 补update/VERSION
- vendor/示例资源已gitignore
This commit is contained in:
李建琦
2026-08-26 18:37:36 +08:00
commit eae151fd57
888 changed files with 105571 additions and 0 deletions
@@ -0,0 +1,20 @@
<?php
namespace plugin\control\app\admin\controller;
use app\Basic;
use app\expose\build\builder\ComponentBuilder;
use app\expose\build\builder\FormBuilder;
use app\expose\enum\Filesystem;
use app\expose\enum\SubmitEvent;
use app\expose\trait\Config;
use support\Request;
class SettingsController extends Basic
{
use Config;
public function state(Request $request)
{
return $this->builder();
}
}
@@ -0,0 +1,426 @@
<?php
namespace plugin\control\app\admin\controller;
use app\Basic;
use app\expose\build\builder\ComponentBuilder;
use app\expose\build\builder\FormBuilder;
use app\expose\build\builder\TableBuilder;
use app\expose\enum\Action;
use app\expose\enum\State;
use plugin\control\app\model\PluginChannelsUser;
use support\Request;
class UserController extends Basic
{
public function __construct()
{
$this->model = new PluginChannelsUser;
}
public function indexGetTable(Request $request)
{
$builder = new TableBuilder;
$builder->addAction('操作', [
'width' => '100px',
'fixed' => 'right'
]);
$builder->addTableAction('编辑', [
'model' => Action::DIALOG['value'],
'path' => '/app/control/admin/User/update',
'props' => [
'title' => '编辑《ID{id}》渠道用户'
],
'component' => [
'name' => 'button',
'props' => [
'type' => 'primary',
'size' => 'small'
]
]
]);
$builder->addHeader();
$builder->addHeaderAction('创建渠道用户', [
'model' => Action::DIALOG['value'],
'path' => '/app/control/admin/User/create',
'props' => [
'title' => '创建渠道用户'
],
'component' => [
'name' => 'button',
'props' => [
'type' => 'success'
]
]
]);
$formBuilder = new FormBuilder(null, null, [
'inline' => true
]);
$formBuilder->add('nickname', '昵称', 'input', '', [
'props' => [
'placeholder' => '昵称搜索',
'clearable' => true
]
]);
$formBuilder->add('username', '账号', 'input', '', [
'props' => [
'placeholder' => '账号搜索',
'clearable' => true
]
]);
$formBuilder->add('mobile', '手机号', 'input', '', [
'props' => [
'placeholder' => '手机号搜索',
'clearable' => true
]
]);
$formBuilder->add('email', '邮箱', 'input', '', [
'props' => [
'placeholder' => '邮箱搜索',
'clearable' => true
]
]);
$formBuilder->add('uid', 'UID', 'input', '', [
'props' => [
'placeholder' => 'UID搜索',
'clearable' => true
]
]);
$builder->addScreen($formBuilder);
$builder->add('id', 'ID', [
'props' => [
'width' => '100px'
]
]);
$builder->add('userinfo', '渠道用户', [
'component' => [
'name' => 'table-userinfo',
'props' => [
'nickname' => 'nickname',
'avatar' => 'headimg',
'info' => 'username',
'nicknameTags' => [
[
'field' => 'new_text',
'props' => [
'type' => 'success',
'size' => 'small'
]
],
[
'field' => 'week_text',
'props' => [
'type' => 'warning',
'size' => 'small'
]
],
[
'field' => 'month_text',
'props' => [
'type' => 'info',
'size' => 'small'
]
]
]
]
],
'props' => [
'minWidth' => '300px'
]
]);
$builder->add('contact', '联系方式', [
'props' => [
'width' => '280px'
],
'component' => [
'name' => 'table-times',
'props' => [
'group' => [
[
'field' => 'mobile',
'label' => '手机号'
],
[
'field' => 'email',
'label' => '邮箱'
]
]
]
]
]);
$builder->add('state', '状态', [
'component' => [
'name' => 'switch',
'api' => '/app/control/admin/User/indexUpdateState',
'props' => [
'active-value' => State::YES['value'],
'inactive-value' => State::NO['value']
]
],
'props' => [
'width' => '100px'
]
]);
$builder->add('online_time', '活动', [
'props' => [
'width' => '200px'
],
'component' => [
'name' => 'table-times',
'props' => [
'group' => [
[
'field' => 'activation_time',
'label' => '激活'
],
[
'field' => 'login_time',
'label' => '登录'
],
[
'component' => 'tag',
'field' => 'login_ip',
'label' => '登录IP',
'props' => [
'size' => 'small',
]
]
]
]
]
]);
$builder->add('create_time', '时间', [
'props' => [
'width' => '200px'
],
'component' => [
'name' => 'table-times',
'props' => [
'group' => [
[
'field' => 'create_time',
'label' => '创建'
],
[
'field' => 'update_time',
'label' => '更新'
]
]
]
]
]);
$builder = $builder->builder();
return $this->resData($builder);
}
public function query(Request $request)
{
$query = $request->post('query');
if (empty($query)) {
return $this->resData([]);
}
$where = [];
$where[] = ['nickname|username|mobile|email', 'like', "%{$query}%"];
return $this->resData(PluginChannelsUser::options($where));
}
public function index(Request $request)
{
$limit = $request->get('limit', 10);
$where = [];
$username = $request->get('username');
if ($username) {
$where[] = ['username', 'like', "%{$username}%"];
}
$mobile = $request->get('mobile');
if ($mobile) {
$where[] = ['mobile', 'like', "%{$mobile}%"];
}
$email = $request->get('email');
if ($email) {
$where[] = ['email', 'like', "%{$email}%"];
}
$puid = $request->get('puid');
if ($puid) {
$where[] = ['puid', '=', $puid];
}
$uid = $request->get('uid');
if ($uid) {
$where[] = ['id', '=', $uid];
}
$list = PluginChannelsUser::where($where)
->order('id desc')->paginate($limit)->each(function ($item) {
// 三天以内创建的
$create_time = strtotime($item->create_time);
$create_time = time() - $create_time;
if ($create_time < 3 * 24 * 60 * 60) {
$item->new_text = '新渠道用户';
} elseif ($create_time < 7 * 24 * 60 * 60) {
$item->week_text = '一周内';
} elseif ($create_time < 30 * 24 * 60 * 60) {
$item->month_text = '30天内';
}
});
return $this->resData($list);
}
public function create(Request $request)
{
if ($request->method() === 'POST') {
$data = $request->post();
try {
$insterData = [];
if (empty($data['username']) && empty($data['mobile'])) {
throw new \Exception('渠道用户名、手机号至少填写一项');
}
if (!empty($data['username'])) {
$Find = PluginChannelsUser::where(['username' => $data['username']])->find();
if ($Find) {
throw new \Exception('渠道用户名已存在');
}
$insterData['username'] = $data['username'];
}
if (!empty($data['mobile'])) {
$Find = PluginChannelsUser::where(['mobile' => $data['mobile']])->find();
if ($Find) {
throw new \Exception('手机号已存在');
}
$insterData['mobile'] = $data['mobile'];
}
if (!empty($data['email'])) {
$insterData['email'] = $data['email'];
}
if (!empty($data['password'])) {
$insterData['password'] = $data['password'];
}
if (!empty($data['activation_time'])) {
$insterData['activation_time'] = $data['activation_time'];
}
if (!empty($data['nickname'])) {
$insterData['nickname'] = $data['nickname'];
}
if (!empty($data['headimg'])) {
$insterData['headimg'] = $data['headimg'];
}
$model = new PluginChannelsUser();
$model->save($insterData);
} catch (\Throwable $th) {
return $this->exception($th);
}
return $this->success('创建成功');
}
$builder = $this->getFormBuilder();
$Component = new ComponentBuilder;
$builder->add('activation_time', '激活时间', 'date-picker', null, [
'prompt' => [
$Component->add('text', ['default' => '不选择时间则不激活,由渠道用户前台登录后自动激活'], ['type' => 'info', 'size' => 'small'])
->builder()
],
'props' => [
'placeholder' => '选择激活时间',
'type' => 'datetime',
'format' => 'YYYY-MM-DD HH:mm:ss',
'value-format' => 'YYYY-MM-DD HH:mm:ss'
]
]);
return $this->resData($builder);
}
public function update(Request $request)
{
if ($request->method() === 'POST') {
$data = $request->post();
try {
$user = PluginChannelsUser::where(['id' => $data['id']])->find();
if (!$user) {
throw new \Exception('渠道用户不存在');
}
if (!empty($data['password'])) {
$user->password = $data['password'];
}
if (!empty($data['username'])) {
$Find = PluginChannelsUser::where(['username' => $data['username']])->find();
if ($Find && $Find->id != $data['id']) {
throw new \Exception('渠道用户名已存在');
}
$user->username = $data['username'];
}
if (!empty($data['mobile'])) {
$Find = PluginChannelsUser::where(['mobile' => $data['mobile']])->find();
if ($Find && $Find->id != $data['id']) {
throw new \Exception('手机号已存在');
}
$user->mobile = $data['mobile'];
}
if (!empty($data['email'])) {
$user->email = $data['email'];
}
if (!empty($data['nickname'])) {
$user->nickname = $data['nickname'];
}
if (!empty($data['headimg'])) {
$user->headimg = $data['headimg'];
}
$user->save();
} catch (\Throwable $th) {
return $this->exception($th);
}
return $this->success('更新成功');
}
$id = $request->get('id');
$User = PluginChannelsUser::where(['id' => $id])->withoutField('password')->find();
$builder = $this->getFormBuilder();
$builder->setData($User->toArray());
return $this->resData($builder);
}
private function getFormBuilder()
{
$builder = new FormBuilder(null, null, [
'labelPosition' => 'right',
'label-width' => "200px",
'class' => 'w-80 mx-auto',
'size' => 'large',
]);
$Component = new ComponentBuilder;
$builder->add('nickname', '昵称', 'input', '', [
'required' => true,
'maxlength' => 30,
'show-word-limit' => true
]);
$builder->add('username', '账号', 'input', '', [
'prompt' => [
$Component->add('text', ['default' => '支持字母、数字、下划线,长度不超过30个字符'], ['type' => 'info', 'size' => 'small'])->builder(),
$Component->add('text', ['default' => '可用于账号登录'], ['type' => 'success', 'size' => 'small'])->builder()
],
'props' => [
'maxlength' => 30,
'show-word-limit' => true
]
]);
$builder->add('mobile', '手机号', 'input', '', [
'prompt' => [
$Component->add('text', ['default' => '中国大陆11位手机号'], ['type' => 'info', 'size' => 'small'])->builder(),
$Component->add('text', ['default' => '可用于账号,短信验证码登录'], ['type' => 'success', 'size' => 'small'])->builder()
],
'props' => [
'maxlength' => 11,
'show-word-limit' => true
]
]);
$builder->add('email', '邮箱', 'input', '', [
'prompt' => [
$Component->add('text', ['default' => '可用于账号,邮箱验证码登录'], ['type' => 'success', 'size' => 'small'])->builder()
],
'props' => [
'maxlength' => 100,
'show-word-limit' => true
]
]);
$builder->add('password', '密码', 'input', '', [
'prompt' => [
$Component->add('text', ['default' => '不修改密码请留空'], ['type' => 'info', 'size' => 'small'])->builder()
],
'props' => [
'placeholder' => '不修改密码请留空',
'maxlength' => 30,
'show-word-limit' => true
]
]);
return $builder;
}
}