| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- <?php
- namespace app\common\validate;
- use think\Validate;
- class Vod extends Validate
- {
- protected $rule = [
- 'vod_name' => 'require',
- 'type_id' => 'require',
- ];
- protected $message = [
- 'vod_name.require' => 'validate/require_name',
- 'type_id.require' => 'validate/require_type',
- ];
- protected $scene = [
- 'add' => ['vod_name','type_id'],
- 'edit' => ['vod_name','type_id'],
- ];
- // xss过滤、长度裁剪
- public static function formatDataBeforeDb($data)
- {
- $filter_fields = [
- 'vod_name' => 255,
- 'vod_sub' => 255,
- 'vod_en' => 255,
- 'vod_color' => 6,
- 'vod_tag' => 100,
- 'vod_class' => 255,
- 'vod_pic' => 1024,
- 'vod_pic_thumb' => 1024,
- 'vod_pic_slide' => 1024,
- 'vod_pic_screenshot' => 65535,
- 'vod_actor' => 255,
- 'vod_director' => 255,
- 'vod_writer' => 100,
- 'vod_behind' => 100,
- 'vod_blurb' => 255,
- 'vod_remarks' => 100,
- 'vod_pubdate' => 100,
- 'vod_serial' => 20,
- 'vod_tv' => 30,
- 'vod_weekday' => 30,
- 'vod_area' => 20,
- 'vod_lang' => 10,
- 'vod_year' => 10,
- 'vod_version' => 30,
- 'vod_state' => 30,
- 'vod_author' => 60,
- 'vod_jumpurl' => 150,
- 'vod_tpl' => 30,
- 'vod_tpl_play' => 30,
- 'vod_tpl_down' => 30,
- 'vod_duration' => 10,
- 'vod_reurl' => 255,
- 'vod_rel_vod' => 255,
- 'vod_rel_art' => 255,
- 'vod_pwd' => 10,
- 'vod_pwd_url' => 255,
- 'vod_pwd_play' => 10,
- 'vod_pwd_play_url' => 255,
- 'vod_pwd_down' => 10,
- 'vod_pwd_down_url' => 255,
- 'vod_play_from' => 255,
- 'vod_play_server' => 255,
- 'vod_play_note' => 255,
- 'vod_down_from' => 255,
- 'vod_down_server' => 255,
- 'vod_down_note' => 255,
- ];
- foreach ($filter_fields as $field => $length) {
- if (!isset($data[$field])) {
- continue;
- }
- $data[$field] = mac_filter_xss($data[$field]);
- $data[$field] = mb_substr($data[$field], 0, $length);
- }
- return $data;
- }
- }
|