<?php

namespace app\admin\logic\app_update;


use app\common\model\app_update\AppUpdate;
use app\common\logic\BaseLogic;
use support\exception\BusinessException;
use think\facade\Db;


/**
 * 收银app更新逻辑
 * Class AppUpdateLogic
 * @package app\admin\logic\app_update
 */
class AppUpdateLogic extends BaseLogic
{


    /**
     * @notes 添加收银app更新
     * @param array $params
     * @return bool
     * @author likeadmin
     * @date 2024/05/30 10:25
     */
    public static function add(array $params): bool
    {
        Db::startTrans();
        try {
            AppUpdate::create([
                'title' => $params['title'],
                'content' => $params['content'],
                'type' => $params['type'],
                'version' => $params['version'],
                'dow_url' => $params['dow_url'],
                'force' => $params['force'],
                'quiet' => $params['quiet']
            ]);

            Db::commit();
            return true;
        } catch (\Throwable $e) {
            Db::rollback();
            throw new BusinessException($e->getMessage());
        }
    }


    /**
     * @notes 编辑收银app更新
     * @param array $params
     * @return bool
     * @author likeadmin
     * @date 2024/05/30 10:25
     */
    public static function edit(array $params): bool
    {
        Db::startTrans();
        try {
            AppUpdate::where('id', $params['id'])->update([
                'title' => $params['title'],
                'content' => $params['content'],
                'type' => $params['type'],
                'version' => $params['version'],
                'dow_url' => $params['dow_url'],
                'force' => $params['force'],
                'quiet' => $params['quiet']
            ]);

            Db::commit();
            return true;
        } catch (\Throwable $e) {
            Db::rollback();
            throw new BusinessException($e->getMessage());
        }
    }


    /**
     * @notes 删除收银app更新
     * @param array $params
     * @return bool
     * @author likeadmin
     * @date 2024/05/30 10:25
     */
    public static function delete(array $params): bool
    {
        return AppUpdate::destroy($params['id']);
    }


    /**
     * @notes 获取收银app更新详情
     * @param $params
     * @return array
     * @author likeadmin
     * @date 2024/05/30 10:25
     */
    public static function detail($params): array
    {
        return AppUpdate::findOrEmpty($params['id'])->toArray();
    }
}