$params['identity_source'], 'block_setting' => self::configureReservedField($params['block_setting']??[]), ]); Db::commit(); return true; } catch (\Exception $e) { Db::rollback(); self::setError($e->getMessage()); return false; } } /** * @notes 编辑 * @param array $params * @return bool * @author likeadmin * @date 2025/03/06 18:08 */ public static function edit(array $params): bool { Db::startTrans(); try { TrainingBlockConfig::where('id', $params['id'])->update([ 'identity_source' => $params['identity_source'], 'block_setting' => json_encode(self::configureReservedField($params['block_setting']??[])), ]); Db::commit(); return true; } catch (\Exception $e) { Db::rollback(); self::setError($e->getMessage()); return false; } } /** * @notes 删除 * @param array $params * @return bool * @author likeadmin * @date 2025/03/06 18:08 */ public static function delete(array $params): bool { return TrainingBlockConfig::destroy($params['id']); } /** * @notes 获取详情 * @param $params * @return array * @author likeadmin * @date 2025/03/06 18:08 */ public static function detail($params): array { return TrainingBlockConfig::findOrEmpty($params['id'])->toArray(); } public static function configureReservedField($data): array { foreach ($data as $key => &$item) { $data[$key]['block_key'] = $key+1; if($item['is_must']){ $item['is_must'] = \true; }else{ $item['is_must'] = \false; } } return $data??[]; } public static function getBlockConfig($identity_source,$type = 'all') { $block_setting = TrainingBlockConfig::where('identity_source',$identity_source)->value('block_setting'); $settings = []; if($block_setting){ $block_setting = json_decode($block_setting,true); $settings = array_column($block_setting,'type_value','type'); } return ($type==='all')?$settings:($settings[$type]??[]); } public static function getRequiredConfig($identity_source) { $block_setting = TrainingBlockConfig::where('identity_source',$identity_source)->value('block_setting'); $settings = []; if($block_setting){ $settings = json_decode($block_setting,true); } return $settings??[]; } }