| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979 |
- <?php
- namespace app\common\model;
- use think\Db;
- use think\Cache;
- use app\common\util\Pinyin;
- use think\Request;
- use app\common\validate\Vod as VodValidate;
- class Collect extends Base {
- // 设置数据表(不含前缀)
- protected $name = 'collect';
- // 定义时间戳字段名
- protected $createTime = '';
- protected $updateTime = '';
- // 自动完成
- protected $auto = [];
- protected $insert = [];
- protected $update = [];
- public function listData($where,$order,$page=1,$limit=20,$start=0)
- {
- $page = $page > 0 ? (int)$page : 1;
- $limit = $limit ? (int)$limit : 20;
- $start = $start ? (int)$start : 0;
- $total = $this->where($where)->count();
- $list = Db::name('Collect')->where($where)->order($order)->page($page)->limit($limit)->select();
- return ['code'=>1,'msg'=>lang('data_list'),'page'=>$page,'pagecount'=>ceil($total/$limit),'limit'=>$limit,'total'=>$total,'list'=>$list];
- }
- public function infoData($where,$field='*')
- {
- if(empty($where) || !is_array($where)){
- return ['code'=>1001,'msg'=>lang('param_err')];
- }
- $info = $this->field($field)->where($where)->find();
- if(empty($info)){
- return ['code'=>1002,'msg'=>lang('obtain_err')];
- }
- $info = $info->toArray();
- return ['code'=>1,'msg'=>lang('obtain_ok'),'info'=>$info];
- }
- public function saveData($data)
- {
- $validate = \think\Loader::validate('Collect');
- if(!empty($data['collect_id'])){
- if(!$validate->scene('edit')->check($data)){
- return ['code'=>1001,'msg'=>lang('param_err').':'.$validate->getError() ];
- }
- $where=[];
- $where['collect_id'] = ['eq',$data['collect_id']];
- $res = $this->where($where)->update($data);
- }
- else{
- if(!$validate->scene('edit')->check($data)){
- return ['code'=>1002,'msg'=>lang('param_err').':'.$validate->getError() ];
- }
- $res = $this->insert($data);
- }
- if(false === $res){
- return ['code'=>1003,'msg'=>''.$this->getError() ];
- }
- return ['code'=>1,'msg'=>lang('save_ok')];
- }
- public function delData($where)
- {
- $res = $this->where($where)->delete();
- if($res===false){
- return ['code'=>1001,'msg'=>lang('del_err').':'.$this->getError() ];
- }
- return ['code'=>1,'msg'=>lang('del_ok')];
- }
- public function check_flag($param)
- {
- if($param['cjflag'] != md5($param['cjurl'])){
- return ['code'=>9001, 'msg'=>lang('model/collect/flag_err')];
- }
- return ['code'=>1,'msg'=>'ok'];
- }
- public function vod($param)
- {
- if($param['type'] == '1'){
- return $this->vod_xml($param);
- }
- elseif($param['type'] == '2'){
- return $this->vod_json($param);
- }
- else{
- $data = $this->vod_json($param);
- if($data['code'] == 1){
- return $data;
- }
- else{
- return $this->vod_xml($param);
- }
- }
- }
- public function art($param)
- {
- return $this->art_json($param);
- }
- public function actor($param)
- {
- return $this->actor_json($param);
- }
- public function role($param)
- {
- return $this->role_json($param);
- }
- public function website($param)
- {
- return $this->website_json($param);
- }
- public function manga($param)
- {
- if($param['type'] == '1'){
- return $this->manga_xml($param);
- }
- elseif($param['type'] == '2'){
- return $this->manga_json($param);
- }
- else{
- $data = $this->manga_json($param);
- if($data['code'] == 1){
- return $data;
- }
- else{
- return $this->manga_xml($param);
- }
- }
- }
- public function vod_xml_replace($url)
- {
- $array_url = array();
- $arr_ji = explode('#',str_replace('||','//',$url));
- foreach($arr_ji as $key=>$value){
- $urlji = explode('$',$value);
- if( count($urlji) > 1 ){
- $array_url[$key] = $urlji[0].'$'.trim($urlji[1]);
- }else{
- $array_url[$key] = trim($urlji[0]);
- }
- }
- return implode('#',$array_url);
- }
- public function vod_xml($param,$html='')
- {
- $url_param = [];
- $url_param['ac'] = $param['ac'];
- $url_param['t'] = $param['t'];
- $url_param['pg'] = is_numeric($param['page']) ? $param['page'] : '';
- $url_param['h'] = $param['h'];
- $url_param['ids'] = $param['ids'];
- $url_param['wd'] = $param['wd'];
- if(empty($param['h']) && !empty($param['rday'])){
- $url_param['h'] = $param['rday'];
- }
- if($param['ac']!='list'){
- $url_param['ac'] = 'videolist';
- }
- $url = $param['cjurl'];
- if(strpos($url,'?')===false){
- $url .='?';
- }
- else{
- $url .='&';
- }
- $url .= http_build_query($url_param). base64_decode($param['param']);
- $result = $this->checkCjUrl($url);
- if ($result['code'] > 1) {
- return $result;
- }
- $html = mac_curl_get($url);
- if(empty($html)){
- return ['code'=>1001, 'msg'=>lang('model/collect/get_html_err') . ', url: ' . $url];
- }
- $html = mac_filter_tags($html);
- $xml = @simplexml_load_string($html);
- if(empty($xml)){
- $labelRule = '<pic>'."(.*?)".'</pic>';
- $labelRule = mac_buildregx($labelRule,"is");
- preg_match_all($labelRule,$html,$tmparr);
- $ec=false;
- foreach($tmparr[1] as $tt){
- if(strpos($tt,'[CDATA')===false){
- $ec=true;
- $ne = '<pic>'.'<![CDATA['.$tt .']]>'.'</pic>';
- $html = str_replace('<pic>'.$tt.'</pic>',$ne,$html);
- }
- }
- if($ec) {
- $xml = @simplexml_load_string($html);
- }
- if(empty($xml)) {
- return ['code' => 1002, 'msg'=>lang('model/collect/xml_err')];
- }
- }
- $array_page = [];
- $array_page['page'] = (string)$xml->list->attributes()->page;
- $array_page['pagecount'] = (string)$xml->list->attributes()->pagecount;
- $array_page['pagesize'] = (string)$xml->list->attributes()->pagesize;
- $array_page['recordcount'] = (string)$xml->list->attributes()->recordcount;
- $array_page['url'] = $url;
- $type_list = model('Type')->getCache('type_list');
- $bind_list = config('bind');
- $key = 0;
- $array_data = [];
- foreach($xml->list->video as $video){
- $bind_key = $param['cjflag'] .'_'.(string)$video->tid;
- if($bind_list[$bind_key] >0){
- $array_data[$key]['type_id'] = $bind_list[$bind_key];
- }
- else{
- $array_data[$key]['type_id'] = 0;
- }
- $array_data[$key]['vod_id'] = (string)$video->id;
- //$array_data[$key]['type_id'] = (string)$video->tid;
- $array_data[$key]['vod_name'] = (string)$video->name;
- $array_data[$key]['vod_sub'] = (string)$video->subname;
- $array_data[$key]['vod_remarks'] = (string)$video->note;
- $array_data[$key]['type_name'] = (string)$video->type;
- $array_data[$key]['vod_pic'] = (string)$video->pic;
- $array_data[$key]['vod_lang'] = (string)$video->lang;
- $array_data[$key]['vod_area'] = (string)$video->area;
- $array_data[$key]['vod_year'] = (string)$video->year;
- $array_data[$key]['vod_serial'] = (string)$video->state;
- $array_data[$key]['vod_actor'] = (string)$video->actor;
- $array_data[$key]['vod_director'] = (string)$video->director;
- $array_data[$key]['vod_content'] = (string)$video->des;
- $array_data[$key]['vod_status'] = 1;
- $array_data[$key]['vod_type'] = $array_data[$key]['list_name'];
- $array_data[$key]['vod_time'] = (string)$video->last;
- $array_data[$key]['vod_total'] = 0;
- $array_data[$key]['vod_isend'] = 1;
- if($array_data[$key]['vod_serial']){
- $array_data[$key]['vod_isend'] = 0;
- }
- //格式化地址与播放器
- $array_from = [];
- $array_url = [];
- $array_server=[];
- $array_note=[];
- //videolist|list播放列表不同
- if(isset($video->dl->dd) && $count=count($video->dl->dd)){
- for($i=0; $i<$count; $i++){
- $array_from[$i] = (string)$video->dl->dd[$i]['flag'];
- $urls = explode('#', $this->vod_xml_replace((string)$video->dl->dd[$i]));
- $sorted_urls = $this->sortPlayUrls($urls);
- $array_url[$i] = implode('#', $sorted_urls);
- $array_server[$i] = 'no';
- $array_note[$i] = '';
- }
- }else{
- $array_from[]=(string)$video->dt;
- $array_url[] ='';
- $array_server[]='';
- $array_note[]='';
- }
- if(strpos(base64_decode($param['param']),'ct=1')!==false){
- $array_data[$key]['vod_down_from'] = implode('$$$', $array_from);
- $array_data[$key]['vod_down_url'] = implode('$$$', $array_url);
- $array_data[$key]['vod_down_server'] = implode('$$$', $array_server);
- $array_data[$key]['vod_down_note'] = implode('$$$', $array_note);
- }
- else{
- $array_data[$key]['vod_play_from'] = implode('$$$', $array_from);
- $array_data[$key]['vod_play_url'] = implode('$$$', $array_url);
- $array_data[$key]['vod_play_server'] = implode('$$$', $array_server);
- $array_data[$key]['vod_play_note'] = implode('$$$', $array_note);
- }
- $key++;
- }
- $array_type = [];
- $key=0;
- //分类列表
- if($param['ac'] == 'list'){
- foreach($xml->class->ty as $ty){
- $array_type[$key]['type_id'] = (string)$ty->attributes()->id;
- $array_type[$key]['type_name'] = (string)$ty;
- $key++;
- }
- }
- $res = ['code'=>1, 'msg'=>'xml', 'page'=>$array_page, 'type'=>$array_type, 'data'=>$array_data ];
- return $res;
- }
- public function vod_json($param)
- {
- $url_param = [];
- $url_param['ac'] = $param['ac'];
- $url_param['t'] = $param['t'];
- $url_param['pg'] = is_numeric($param['page']) ? $param['page'] : '';
- $url_param['h'] = $param['h'];
- $url_param['ids'] = $param['ids'];
- $url_param['wd'] = $param['wd'];
- if($param['ac']!='list'){
- $url_param['ac'] = 'videolist';
- }
- $url = $param['cjurl'];
- if(strpos($url,'?')===false){
- $url .='?';
- }
- else{
- $url .='&';
- }
- $url .= http_build_query($url_param). base64_decode($param['param']);
- $result = $this->checkCjUrl($url);
- if ($result['code'] > 1) {
- return $result;
- }
- $html = mac_curl_get($url);
- if(empty($html)){
- return ['code'=>1001, 'msg'=>lang('model/collect/get_html_err') . ', url: ' . $url];
- }
- $html = mac_filter_tags($html);
- $json = json_decode($html,true);
- if(!$json){
- return ['code'=>1002, 'msg'=>lang('model/collect/json_err') . ', url: ' . $url . ', response: ' . mb_substr($html, 0, 15)];
- }
- $array_page = [];
- $array_page['page'] = $json['page'];
- $array_page['pagecount'] = $json['pagecount'];
- $array_page['pagesize'] = $json['limit'];
- $array_page['recordcount'] = $json['total'];
- $array_page['url'] = $url;
- $type_list = model('Type')->getCache('type_list');
- $bind_list = config('bind');
- $key = 0;
- $array_data = [];
- foreach($json['list'] as $key=>$v){
- $array_data[$key] = $v;
- $bind_key = $param['cjflag'] .'_'.$v['type_id'];
- if($bind_list[$bind_key] >0){
- $array_data[$key]['type_id'] = $bind_list[$bind_key];
- }
- else{
- $array_data[$key]['type_id'] = 0;
- }
- if(!empty($v['dl'])) {
- //格式化地址与播放器
- $array_from = [];
- $array_url = [];
- $array_server = [];
- $array_note = [];
- //videolist|list播放列表不同
- foreach ($v['dl'] as $k2 => $v2) {
- $array_from[] = $k2;
- $urls = explode('#', $v2);
- $sorted_urls = $this->sortPlayUrls($urls);
- $array_url[] = implode('#', $sorted_urls);
- $array_server[] = 'no';
- $array_note[] = '';
- }
- $array_data[$key]['vod_play_from'] = implode('$$$', $array_from);
- $array_data[$key]['vod_play_url'] = implode('$$$', $array_url);
- $array_data[$key]['vod_play_server'] = implode('$$$', $array_server);
- $array_data[$key]['vod_play_note'] = implode('$$$', $array_note);
- }
- }
- $array_type = [];
- $key=0;
- //分类列表
- if($param['ac'] == 'list'){
- foreach($json['class'] as $k=>$v){
- $array_type[$key]['type_id'] = $v['type_id'];
- $array_type[$key]['type_name'] = $v['type_name'];
- $key++;
- }
- }
- $res = ['code'=>1, 'msg'=>'json', 'page'=>$array_page, 'type'=>$array_type, 'data'=>$array_data ];
- return $res;
- }
- private function sortPlayUrls($urls) {
- $sorted = [];
- foreach ($urls as $url) {
- if (preg_match('/(?:第|EP|E)?(\d+)(?:集|话|回)?/', $url, $matches)) {
- $episode = (int)$matches[1];
- $sorted[$episode] = $url;
- } else {
- $sorted[] = $url;
- }
- }
- ksort($sorted);
- return array_values($sorted);
- }
- /**
- * 同步图片
- *
- * @param $pic_status int 是否同步。为1时,同步图片
- * @param $pic_url
- * @param string $flag
- * @return array
- */
- private function syncImages($pic_status, $pic_url, $flag = 'vod')
- {
- $img_url_downloaded = $pic_url;
- if ($pic_status == 1) {
- $config = (array)config('maccms.upload');
- $img_url_downloaded = model('Image')->down_load($pic_url, $config, $flag);
- if ($img_url_downloaded == $pic_url) {
- // 下载失败,显示老图信息
- $des = '<a href="' . $pic_url . '" target="_blank">' . $pic_url . '</a><font color=red>'.lang('download_err').'!</font>';
- } else {
- // 下载成功,显示新图信息
- if (str_starts_with($img_url_downloaded, 'upload/')) {
- $link = MAC_PATH . $img_url_downloaded;
- } else {
- $link = str_replace('mac:', $config['protocol'] . ':', $img_url_downloaded);
- }
- $des = '<a href="' . $link . '" target="_blank">' . $link . '</a><font color=green>'.lang('download_ok').'!</font>';
- }
- }
- return ['pic' => $img_url_downloaded, 'msg' => $des];
- }
- public function vod_data($param,$data,$show=1)
- {
- if($show==1) {
- mac_echo('[' . __FUNCTION__ . '] ' . lang('model/collect/data_tip1', [$data['page']['page'],$data['page']['pagecount'],$data['page']['url']]));
- }
- $config = config('maccms.collect');
- $config = $config['vod'];
- $config_sync_pic = $param['sync_pic_opt'] > 0 ? $param['sync_pic_opt'] : $config['pic'];
- $filter_year = !empty($param['filter_year']) ? $param['filter_year'] : '';
- $filter_year_list = $filter_year ? get_array_unique_id_list(explode(',', $filter_year)) : [];
- $players = config('vodplayer');
- $downers = config('voddowner');
- $vod_search = model('VodSearch');
- $vod_search_enabled = $vod_search->isCollectEnabled();
- $vs_max_id_count = $vod_search->maxIdCount;
- $type_list = model('Type')->getCache('type_list');
- $filter_arr = explode(',',$config['filter']);
- $filter_arr = array_filter($filter_arr);
- $pse_rnd = explode('#',$config['words']);
- $pse_rnd = array_filter($pse_rnd);
- $pse_name = mac_txt_explain($config['namewords'], true);
- $pse_syn = mac_txt_explain($config['thesaurus'], true);
- $pse_player = mac_txt_explain($config['playerwords'], true);
- $pse_area = mac_txt_explain($config['areawords'], true);
- $pse_lang = mac_txt_explain($config['langwords'], true);
- foreach($data['data'] as $k=>$v){
- $color='red';
- $des='';
- $msg='';
- $tmp='';
- if ($v['type_id'] ==0) {
- $des = lang('model/collect/type_err');
- } elseif (empty($v['vod_name'])) {
- $des = lang('model/collect/name_err');
- } elseif (mac_array_filter($filter_arr,$v['vod_name']) !==false) {
- $des = lang('model/collect/name_in_filter_err');
- } elseif ($filter_year_list && !in_array(intval($v['vod_year']), $filter_year_list)) {
- // 采集时,过滤年份
- // https://github.com/magicblack/maccms10/issues/1057
- $color = 'orange';
- $des = 'year [' . intval($v['vod_year']) . '] not in: ' . join(',', $filter_year_list);
- } else {
- unset($v['vod_id']);
- foreach($v as $k2=>$v2){
- if(strpos($k2,'_content')===false && $k2!=='vod_plot_detail') {
- $v[$k2] = strip_tags($v2);
- }
- }
- $v['type_id_1'] = intval($type_list[$v['type_id']]['type_pid']);
- $v['vod_en'] = Pinyin::get($v['vod_name']);
- $v['vod_letter'] = strtoupper(substr($v['vod_en'],0,1));
- // 使用资源站的添加时间,更新时间保持当前
- // https://github.com/magicblack/maccms10/issues/780
- if (empty($v['vod_time_add']) || strlen($v['vod_time_add']) != 10) {
- $v['vod_time_add'] = time();
- }
- // 支持外部自定义修改时间
- // https://github.com/magicblack/maccms10/issues/862
- $v['vod_time'] = time();
- if (!empty($v['vod_time_update']) && strlen($v['vod_time_update']) == 10) {
- $v['vod_time'] = (int)$v['vod_time_update'];
- }
- $v['vod_status'] = intval($config['status']);
- $v['vod_lock'] = intval($v['vod_lock']);
- if(!empty($v['vod_status'])) {
- $v['vod_status'] = intval($v['vod_status']);
- }
- $v['vod_year'] = intval($v['vod_year']);
- $v['vod_level'] = intval($v['vod_level']);
- $v['vod_hits'] = intval($v['vod_hits']);
- $v['vod_hits_day'] = intval($v['vod_hits_day']);
- $v['vod_hits_week'] = intval($v['vod_hits_week']);
- $v['vod_hits_month'] = intval($v['vod_hits_month']);
- $v['vod_stint_play'] = intval($v['vod_stint_play']);
- $v['vod_stint_down'] = intval($v['vod_stint_down']);
- $v['vod_total'] = intval($v['vod_total']);
- $v['vod_serial'] = intval($v['vod_serial']);
- $v['vod_isend'] = intval($v['vod_isend']);
- $v['vod_up'] = intval($v['vod_up']);
- $v['vod_down'] = intval($v['vod_down']);
- $v['vod_score'] = floatval($v['vod_score']);
- $v['vod_score_all'] = intval($v['vod_score_all']);
- $v['vod_score_num'] = intval($v['vod_score_num']);
- $v['vod_class'] = mac_txt_merge($v['vod_class'],$v['type_name']);
- $v['vod_actor'] = mac_format_text($v['vod_actor'], true);
- $v['vod_director'] = mac_format_text($v['vod_director'], true);
- $v['vod_class'] = mac_format_text($v['vod_class'], true);
- $v['vod_tag'] = mac_format_text($v['vod_tag'], true);
- $v['vod_plot_name'] = (string)$v['vod_plot_name'];
- $v['vod_plot_detail'] = (string)$v['vod_plot_detail'];
- if(!empty($v['vod_plot_name'])){
- $v['vod_plot'] = 1;
- $v['vod_plot_name'] = trim($v['vod_plot_name'],'$$$');
- }
- if(!empty($v['vod_plot_detail'])){
- $v['vod_plot_detail'] = trim($v['vod_plot_detail'],'$$$');
- }
- if(empty($v['vod_isend']) && !empty($v['vod_serial'])){
- $v['vod_isend'] = 0;
- }
- if($config['hits_start']>0 && $config['hits_end']>0) {
- $v['vod_hits'] = rand($config['hits_start'], $config['hits_end']);
- $v['vod_hits_day'] = rand($config['hits_start'], $config['hits_end']);
- $v['vod_hits_week'] = rand($config['hits_start'], $config['hits_end']);
- $v['vod_hits_month'] = rand($config['hits_start'], $config['hits_end']);
- }
- if($config['updown_start']>0 && $config['updown_end']){
- $v['vod_up'] = rand($config['updown_start'], $config['updown_end']);
- $v['vod_down'] = rand($config['updown_start'], $config['updown_end']);
- }
- if($config['score']==1) {
- $v['vod_score_num'] = rand(1, 1000);
- $v['vod_score_all'] = $v['vod_score_num'] * rand(1, 10);
- $v['vod_score'] = round($v['vod_score_all'] / $v['vod_score_num'], 1);
- }
- if ($config['psename'] == 1) {
- $v['vod_name'] = mac_rep_pse_syn($pse_name, $v['vod_name']);
- }
- if ($config['psernd'] == 1) {
- $v['vod_content'] = mac_rep_pse_rnd($pse_rnd, $v['vod_content']);
- }
- if ($config['psesyn'] == 1) {
- $v['vod_content'] = mac_rep_pse_syn($pse_syn, $v['vod_content']);
- }
- if ($config['pseplayer'] == 1) {
- $v['vod_play_from'] = mac_rep_pse_syn($pse_player, $v['vod_play_from']);
- }
- if ($config['psearea'] == 1) {
- $v['vod_area'] = mac_rep_pse_syn($pse_area, $v['vod_area']);
- }
- if ($config['pselang'] == 1) {
- $v['vod_lang'] = mac_rep_pse_syn($pse_lang, $v['vod_lang']);
- }
- if(empty($v['vod_blurb'])){
- $v['vod_blurb'] = mac_substring( strip_tags($v['vod_content']) ,100);
- }
- $where = [];
- if (strpos($config['inrule'], 'a')!==false) {
- $where['vod_name'] = mac_filter_xss($v['vod_name']);
- }
- $blend=false;
- if (strpos($config['inrule'], 'b')!==false) {
- $where['type_id'] = $v['type_id'];
- }
- if (strpos($config['inrule'], 'c')!==false) {
- $where['vod_year'] = $v['vod_year'];
- }
- if (strpos($config['inrule'], 'd')!==false) {
- $where['vod_area'] = $v['vod_area'];
- }
- if (strpos($config['inrule'], 'e')!==false) {
- $where['vod_lang'] = $v['vod_lang'];
- }
- $search_actor_id_list = [];
- if (strpos($config['inrule'], 'f')!==false) {
- $where['vod_actor'] = ['like', mac_like_arr(mac_filter_xss($v['vod_actor'])), 'OR'];
- if ($vod_search_enabled) {
- $search_actor_id_list = $vod_search->getResultIdList(mac_filter_xss($v['vod_actor']), 'vod_actor', true);
- $search_actor_id_list = empty($search_actor_id_list) ? [0] : $search_actor_id_list;
- }
- }
- if (strpos($config['inrule'], 'g')!==false) {
- $where['vod_director'] = mac_filter_xss($v['vod_director']);
- }
- if (strpos($config['inrule'], 'h')!==false) {
- $where['vod_douban_id'] = intval($v['vod_douban_id']);
- }
- if ($config['tag'] == 1) {
- $v['vod_tag'] = mac_filter_xss(mac_get_tag($v['vod_name'], $v['vod_content']));
- }
- if(!empty($where['vod_actor']) && !empty($where['vod_director'])){
- $blend = true;
- $GLOBALS['blend'] = [
- 'vod_actor' => $where['vod_actor'],
- 'vod_director' => $where['vod_director'],
- ];
- // 结果太大时,筛选更耗时。仅在结果数量较小时,才加入
- $GLOBALS['blend']['vod_id'] = null;
- if ($vod_search_enabled && count($search_actor_id_list) <= $vs_max_id_count) {
- $GLOBALS['blend']['vod_id'] = ['IN', $search_actor_id_list];
- }
- unset($where['vod_actor'],$where['vod_director']);
- }
- if(empty($v['vod_play_url'])){
- $v['vod_play_url'] = '';
- }
- if(empty($v['vod_down_url'])){
- $v['vod_down_url'] = '';
- }
- //验证地址
- $cj_play_from_arr = explode('$$$',$v['vod_play_from'] );
- $cj_play_url_arr = explode('$$$',$v['vod_play_url']);
- $cj_play_server_arr = explode('$$$',$v['vod_play_server']);
- $cj_play_note_arr = explode('$$$',$v['vod_play_note']);
- $cj_down_from_arr = explode('$$$',$v['vod_down_from'] );
- $cj_down_url_arr = explode('$$$',$v['vod_down_url']);
- $cj_down_server_arr = explode('$$$',$v['vod_down_server']);
- $cj_down_note_arr = explode('$$$',$v['vod_down_note']);
- $collect_filter=[];
- foreach($cj_play_from_arr as $kk=>$vv){
- if(empty($vv)){
- unset($cj_play_from_arr[$kk]);
- unset($cj_play_url_arr[$kk]);
- unset($cj_play_server_arr[$kk]);
- unset($cj_play_note_arr[$kk]);
- continue;
- }
- if(empty($players[$vv])){
- unset($cj_play_from_arr[$kk]);
- unset($cj_play_url_arr[$kk]);
- unset($cj_play_server_arr[$kk]);
- unset($cj_play_note_arr[$kk]);
- continue;
- }
- $cj_play_url_arr[$kk] = rtrim($cj_play_url_arr[$kk],'#');
- $cj_play_server_arr[$kk] = $cj_play_server_arr[$kk];
- $cj_play_note_arr[$kk] = $cj_play_note_arr[$kk];
- if($param['filter'] > 0){
- if(strpos(','.$param['filter_from'].',',$vv)!==false) {
- $collect_filter['play'][$param['filter']]['cj_play_from_arr'][$kk] = $vv;
- $collect_filter['play'][$param['filter']]['cj_play_url_arr'][$kk] = $cj_play_url_arr[$kk];
- $collect_filter['play'][$param['filter']]['cj_play_server_arr'][$kk] = $cj_play_server_arr[$kk];
- $collect_filter['play'][$param['filter']]['cj_play_note_arr'][$kk] = $cj_play_note_arr[$kk];
- }
- }
- }
- foreach($cj_down_from_arr as $kk=>$vv){
- if(empty($vv)){
- unset($cj_down_from_arr[$kk]);
- unset($cj_down_url_arr[$kk]);
- unset($cj_down_server_arr[$kk]);
- unset($cj_down_note_arr[$kk]);
- continue;
- }
- if(empty($downers[$vv])){
- unset($cj_down_from_arr[$kk]);
- unset($cj_down_url_arr[$kk]);
- unset($cj_down_server_arr[$kk]);
- unset($cj_down_note_arr[$kk]);
- continue;
- }
- $cj_down_url_arr[$kk] = rtrim($cj_down_url_arr[$kk]);
- $cj_down_server_arr[$kk] = $cj_down_server_arr[$kk];
- $cj_down_note_arr[$kk] = $cj_down_note_arr[$kk];
- if($param['filter'] > 0){
- if(strpos(','.$param['filter_from'].',',$vv)!==false) {
- $collect_filter['down'][$param['filter']]['cj_down_from_arr'][$kk] = $vv;
- $collect_filter['down'][$param['filter']]['cj_down_url_arr'][$kk] = $cj_down_url_arr[$kk];
- $collect_filter['down'][$param['filter']]['cj_down_server_arr'][$kk] = $cj_down_server_arr[$kk];
- $collect_filter['down'][$param['filter']]['cj_down_note_arr'][$kk] = $cj_down_note_arr[$kk];
- }
- }
- }
- $v['vod_play_from'] = (string)join('$$$', (array)$cj_play_from_arr);
- $v['vod_play_url'] = (string)join('$$$', (array)$cj_play_url_arr);
- $v['vod_play_server'] = (string)join('$$$', (array)$cj_play_server_arr);
- $v['vod_play_note'] = (string)join('$$$', (array)$cj_play_note_arr);
- $v['vod_down_from'] = (string)join('$$$', (array)$cj_down_from_arr);
- $v['vod_down_url'] = (string)join('$$$', (array)$cj_down_url_arr);
- $v['vod_down_server'] = (string)join('$$$', (array)$cj_down_server_arr);
- $v['vod_down_note'] = (string)join('$$$', (array)$cj_down_note_arr);
- if($blend===false){
- $info = model('Vod')->where($where)->find();
- }
- else{
- $info = model('Vod')->where($where)
- ->where(function($query) {
- $query->where('vod_director',$GLOBALS['blend']['vod_director']);
- if (!empty($GLOBALS['blend']['vod_id'])) {
- $query->whereOr('vod_id', $GLOBALS['blend']['vod_id']);
- } else {
- $query->whereOr('vod_actor', $GLOBALS['blend']['vod_actor']);
- }
- })
- ->find();
- }
- if (!$info) {
- // 新增
- if ($param['opt'] == 2) {
- $des= lang('model/collect/not_check_add');
- } else {
- if ($param['filter'] == 1 || $param['filter'] == 2) {
- $v['vod_play_from'] = (string)join('$$$', (array)$collect_filter['play'][$param['filter']]['cj_play_from_arr']);
- $v['vod_play_url'] = (string)join('$$$', (array)$collect_filter['play'][$param['filter']]['cj_play_url_arr']);
- $v['vod_play_server'] = (string)join('$$$', (array)$collect_filter['play'][$param['filter']]['cj_play_server_arr']);
- $v['vod_play_note'] = (string)join('$$$', (array)$collect_filter['play'][$param['filter']]['cj_play_note_arr']);
- $v['vod_down_from'] = (string)join('$$$', (array)$collect_filter['down'][$param['filter']]['cj_down_from_arr']);
- $v['vod_down_url'] = (string)join('$$$', (array)$collect_filter['down'][$param['filter']]['cj_down_url_arr']);
- $v['vod_down_server'] = (string)join('$$$', (array)$collect_filter['down'][$param['filter']]['cj_down_server_arr']);
- $v['vod_down_note'] = (string)join('$$$', (array)$collect_filter['down'][$param['filter']]['cj_down_note_arr']);
- }
- $tmp = $this->syncImages($config_sync_pic, $v['vod_pic'], 'vod');
- $v['vod_pic'] = (string)$tmp['pic'];
- $msg = $tmp['msg'];
- $v = VodValidate::formatDataBeforeDb($v);
- $vod_id = model('Vod')->insert($v, false, true);
- if ($vod_id > 0) {
- $vod_search_enabled && $vod_search->checkAndUpdateTopResults(['vod_id' => $vod_id] + $v, true);
- $color = 'green';
- $des = lang('model/collect/add_ok');
- } else {
- $color = 'red';
- $des = 'vod insert failed';
- }
- }
- } else {
- // 更新
- if(empty($config['uprule'])){
- $des = lang('model/collect/uprule_empty');
- }
- elseif ($info['vod_lock'] == 1) {
- $des = lang('model/collect/data_lock');
- }
- elseif($param['opt'] == 1){
- $des = lang('model/collect/not_check_update');
- }
- else {
- unset($v['vod_time_add']);
- $update = [];
- $ec=false;
- if($param['filter'] ==1 || $param['filter']==3){
- $cj_play_from_arr = $collect_filter['play'][$param['filter']]['cj_play_from_arr'];
- $cj_play_url_arr = $collect_filter['play'][$param['filter']]['cj_play_url_arr'];
- $cj_play_server_arr = $collect_filter['play'][$param['filter']]['cj_play_server_arr'];
- $cj_play_note_arr = $collect_filter['play'][$param['filter']]['cj_play_note_arr'];
- $cj_down_from_arr = $collect_filter['down'][$param['filter']]['cj_down_from_arr'];
- $cj_down_url_arr = $collect_filter['down'][$param['filter']]['cj_down_url_arr'];
- $cj_down_server_arr = $collect_filter['down'][$param['filter']]['cj_down_server_arr'];
- $cj_down_note_arr = $collect_filter['down'][$param['filter']]['cj_down_note_arr'];
- }
- if (strpos(',' . $config['uprule'], 'a')!==false && !empty($v['vod_play_from'])) {
- $old_play_from = $info['vod_play_from'];
- $old_play_url = $info['vod_play_url'];
- $old_play_server = $info['vod_play_server'];
- $old_play_note = $info['vod_play_note'];
- foreach ($cj_play_from_arr as $k2 => $v2) {
- $cj_play_from = $v2;
- $cj_play_url = $cj_play_url_arr[$k2];
- $cj_play_server = $cj_play_server_arr[$k2];
- $cj_play_note = $cj_play_note_arr[$k2];
- if ($cj_play_url == $info['vod_play_url']) {
- $des .= lang('model/collect/playurl_same');
- } elseif (empty($cj_play_from)) {
- $des .= lang('model/collect/playfrom_empty');
- } elseif (strpos('$$$'.$info['vod_play_from'].'$$$', '$$$'.$cj_play_from.'$$$') === false) {
- // 新类型播放组,加入
- $color = 'green';
- $des .= lang('model/collect/playgroup_add_ok',[$cj_play_from]);
- if(!empty($old_play_from)){
- $old_play_url .="$$$";
- $old_play_from .= "$$$" ;
- $old_play_server .= "$$$" ;
- $old_play_note .= "$$$" ;
- }
- $old_play_url .= "" . $cj_play_url;
- $old_play_from .= "" . $cj_play_from;
- $old_play_server .= "" . $cj_play_server;
- $old_play_note .= "" . $cj_play_note;
- $ec=true;
- } elseif (!empty($cj_play_url)) {
- // 同类型播放组
- $arr1 = explode("$$$", $old_play_url);
- $arr2 = explode("$$$", $old_play_from);
- $play_key = array_search($cj_play_from, $arr2);
- if ($arr1[$play_key] == $cj_play_url) {
- $des .= lang('model/collect/playgroup_same',[$cj_play_from]);;
- } else {
- $color = 'green';
- $des .= lang('model/collect/playgroup_update_ok',[$cj_play_from]);
- // 根据「地址二更规则」配置,替换或合并
- if ($config['urlrole'] == 1) {
- $tmp1 = explode('#',$arr1[$play_key]);
- $tmp2 = explode('#',$cj_play_url);
- $tmp1 = array_merge($tmp1,$tmp2);
- $tmp1 = array_unique($tmp1);
- $cj_play_url = join('#', (array)$tmp1);
- unset($tmp1,$tmp2);
- }
- $arr1[$play_key] = $cj_play_url;
- $ec=true;
- }
- $old_play_url = join('$$$', (array)$arr1);
- }
- }
- if($ec) {
- $update['vod_play_from'] = $old_play_from;
- $update['vod_play_url'] = $old_play_url;
- $update['vod_play_server'] = $old_play_server;
- $update['vod_play_note'] = $old_play_note;
- }
- }
- $ec=false;
- if (strpos(',' . $config['uprule'], 'b')!==false && !empty($v['vod_down_from'])) {
- $old_down_from = $info['vod_down_from'];
- $old_down_url = $info['vod_down_url'];
- $old_down_server = $info['vod_down_server'];
- $old_down_note = $info['vod_down_note'];
- foreach ($cj_down_from_arr as $k2 => $v2) {
- $cj_down_from = $v2;
- $cj_down_url = $cj_down_url_arr[$k2];
- $cj_down_server = $cj_down_server_arr[$k2];
- $cj_down_note = $cj_down_note_arr[$k2];
- if ($cj_down_url == $info['vod_down_url']) {
- $des .= lang('model/collect/downurl_same');
- } elseif (empty($cj_down_from)) {
- $des .= lang('model/collect/downfrom_empty');
- } elseif (strpos('$$$'.$info['vod_down_from'].'$$$', '$$$'.$cj_down_from.'$$$')===false) {
- $color = 'green';
- $des .= lang('model/collect/downgroup_add_ok',[$cj_down_from]);
- if(!empty($old_down_from)){
- $old_down_url .="$$$";
- $old_down_from .= "$$$" ;
- $old_down_server .= "$$$" ;
- $old_down_note .= "$$$" ;
- }
- $old_down_url .= "" .$cj_down_url;
- $old_down_from .= "" .$cj_down_from;
- $old_down_server .= "" .$cj_down_server;
- $old_down_note .= "" .$cj_down_note;
- $ec=true;
- } elseif (!empty($cj_down_url)) {
- $arr1 = explode("$$$", $old_down_url);
- $arr2 = explode("$$$", $old_down_from);
- $down_key = array_search($cj_down_from, $arr2);
- if ($arr1[$down_key] == $cj_down_url) {
- $des .= lang('model/collect/downgroup_same',[$cj_down_from]);
- } else {
- $color = 'green';
- $des .= lang('model/collect/downgroup_update_ok',[$cj_down_from]);
- // 根据「地址二更规则」配置,替换或合并
- // “采集参数配置--地址二更规则”配置需要对下载地址生效
- // https://github.com/magicblack/maccms10/issues/893
- if ($config['urlrole'] == 1) {
- $tmp1 = explode('#',$arr1[$down_key]);
- $tmp2 = explode('#',$cj_down_url);
- $tmp1 = array_merge($tmp1,$tmp2);
- $tmp1 = array_unique($tmp1);
- $cj_down_url = join('#', (array)$tmp1);
- unset($tmp1,$tmp2);
- }
- $arr1[$down_key] = $cj_down_url;
- $ec=true;
- }
- $old_down_url = join('$$$', (array)$arr1);
- }
- }
- if($ec) {
- $update['vod_down_from'] = $old_down_from;
- $update['vod_down_url'] = $old_down_url;
- $update['vod_down_server'] = $old_down_server;
- $update['vod_down_note'] = $old_down_note;
- }
- }
- if (strpos(',' . $config['uprule'], 'c')!==false && !empty($v['vod_serial']) && $v['vod_serial']!=$info['vod_serial']) {
- $update['vod_serial'] = $v['vod_serial'];
- // 连载数如果均为整数,则取较大值
- // https://github.com/magicblack/maccms10/issues/878
- if (floor($v['vod_serial']) == $v['vod_serial'] && floor($info['vod_serial']) == $info['vod_serial']) {
- $update['vod_serial'] = max($v['vod_serial'], $info['vod_serial']);
- }
- }
- if (strpos(',' . $config['uprule'], 'd')!==false && !empty($v['vod_remarks']) && $v['vod_remarks']!=$info['vod_remarks']) {
- $update['vod_remarks'] = $v['vod_remarks'];
- }
- if (strpos(',' . $config['uprule'], 'e')!==false && !empty($v['vod_director']) && $v['vod_director']!=$info['vod_director']) {
- $update['vod_director'] = $v['vod_director'];
- }
- if (strpos(',' . $config['uprule'], 'f')!==false && !empty($v['vod_actor']) && $v['vod_actor']!=$info['vod_actor']) {
- $update['vod_actor'] = $v['vod_actor'];
- }
- if (strpos(',' . $config['uprule'], 'g')!==false && !empty($v['vod_year']) && $v['vod_year']!=$info['vod_year']) {
- $update['vod_year'] = $v['vod_year'];
- }
- if (strpos(',' . $config['uprule'], 'h')!==false && !empty($v['vod_area']) && $v['vod_area']!=$info['vod_area']) {
- $update['vod_area'] = $v['vod_area'];
- }
- if (strpos(',' . $config['uprule'], 'i')!==false && !empty($v['vod_lang']) && $v['vod_lang']!=$info['vod_lang']) {
- $update['vod_lang'] = $v['vod_lang'];
- }
- if (strpos(',' . $config['uprule'], 'j')!==false && (substr($info["vod_pic"], 0, 4) == "http" || empty($info['vod_pic']) ) && $v['vod_pic']!=$info['vod_pic'] ) {
- $tmp = $this->syncImages($config_sync_pic, $v['vod_pic'],'vod');
- $update['vod_pic'] = (string)$tmp['pic'];
- $msg =$tmp['msg'];
- }
- if (strpos(',' . $config['uprule'], 'k')!==false && !empty($v['vod_content']) && $v['vod_content']!=$info['vod_content']) {
- $update['vod_content'] = $v['vod_content'];
- }
- if (strpos(',' . $config['uprule'], 'l')!==false && !empty($v['vod_tag']) && $v['vod_tag']!=$info['vod_tag']) {
- $update['vod_tag'] = $v['vod_tag'];
- }
- if (strpos(',' . $config['uprule'], 'm')!==false && !empty($v['vod_sub']) && $v['vod_sub']!=$info['vod_sub']) {
- $update['vod_sub'] = $v['vod_sub'];
- }
- if (strpos(',' . $config['uprule'], 'n')!==false && !empty($v['vod_class']) && $v['vod_class']!=$info['vod_class']) {
- $update['vod_class'] = mac_txt_merge($info['vod_class'], $v['vod_class']);
- }
- if (strpos(',' . $config['uprule'], 'o')!==false && !empty($v['vod_writer']) && $v['vod_writer']!=$info['vod_writer']) {
- $update['vod_writer'] = $v['vod_writer'];
- }
- if (strpos(',' . $config['uprule'], 'p')!==false && !empty($v['vod_version']) && $v['vod_version']!=$info['vod_version']) {
- $update['vod_version'] = $v['vod_version'];
- }
- if (strpos(',' . $config['uprule'], 'q')!==false && !empty($v['vod_state']) && $v['vod_state']!=$info['vod_state']) {
- $update['vod_state'] = $v['vod_state'];
- }
- if (strpos(',' . $config['uprule'], 'r')!==false && !empty($v['vod_blurb']) && $v['vod_blurb']!=$info['vod_blurb']) {
- $update['vod_blurb'] = $v['vod_blurb'];
- }
- if (strpos(',' . $config['uprule'], 's')!==false && !empty($v['vod_tv']) && $v['vod_tv']!=$info['vod_tv']) {
- $update['vod_tv'] = $v['vod_tv'];
- }
- if (strpos(',' . $config['uprule'], 't')!==false && !empty($v['vod_weekday']) && $v['vod_weekday']!=$info['vod_weekday']) {
- $update['vod_weekday'] = $v['vod_weekday'];
- }
- if (strpos(',' . $config['uprule'], 'u')!==false && !empty($v['vod_total']) && $v['vod_total']!=$info['vod_total']) {
- $update['vod_total'] = $v['vod_total'];
- }
- if (strpos(',' . $config['uprule'], 'v')!==false && (isset($v['vod_isend']) && $v['vod_isend'] !== '') && $v['vod_isend']!=$info['vod_isend']) {
- $update['vod_isend'] = $v['vod_isend'];
- }
- if (strpos(',' . $config['uprule'], 'w')!==false && !empty($v['vod_plot_name']) && $v['vod_plot_name']!=$info['vod_plot_name']) {
- $update['vod_plot'] = 1;
- $update['vod_plot_name'] = $v['vod_plot_name'];
- $update['vod_plot_detail'] = $v['vod_plot_detail'];
- }
- if(count($update)>0){
- $update['vod_time'] = time();
- $where = [];
- $where['vod_id'] = $info['vod_id'];
- $update = VodValidate::formatDataBeforeDb($update);
- $res = model('Vod')->where($where)->update($update);
- $color = 'green';
- if ($res === false) {
- }
- }
- else{
- $des = lang('model/collect/not_need_update');
- }
- }
- }
- if(Cache::has('vod_repeat_table_created_time')){
- Cache::rm('vod_repeat_table_created_time');
- }
- }
- if($show==1) {
- mac_echo( ($k + 1) .'、'. $v['vod_name'] . " <font color='{$color}'>" .$des .'</font>'. $msg.'' );
- }
- else{
- return ['code'=>($color=='red' ? 1001 : 1),'msg'=>$des ];
- }
- }
- $key = $GLOBALS['config']['app']['cache_flag']. '_'.'collect_break_vod';
- if(ENTRANCE=='api'){
- Cache::rm($key);
- if ($data['page']['page'] < $data['page']['pagecount']) {
- $param['page'] = intval($data['page']['page']) + 1;
- $res = $this->vod($param);
- if($res['code']>1){
- return $this->error($res['msg']);
- }
- $this->vod_data($param,$res );
- }
- mac_echo(lang('model/collect/is_over'));
- die;
- }
- if(empty($GLOBALS['config']['app']['collect_timespan'])){
- $GLOBALS['config']['app']['collect_timespan'] = 3;
- }
- if($show==1) {
- if ($param['ac'] == 'cjsel') {
- Cache::rm($key);
- mac_echo(lang('model/collect/is_over'));
- unset($param['ids']);
- $param['ac'] = 'list';
- $url = url('api') . '?' . http_build_query($param);
- $ref = $_SERVER["HTTP_REFERER"];
- if(!empty($ref)){
- $url = $ref;
- }
- mac_jump($url, $GLOBALS['config']['app']['collect_timespan']);
- } else {
- if ($data['page']['page'] >= $data['page']['pagecount']) {
- Cache::rm($key);
- mac_echo(lang('model/collect/is_over'));
- unset($param['page'],$param['ids']);
- $param['ac'] = 'list';
- $url = url('api') . '?' . http_build_query($param);
- mac_jump($url, $GLOBALS['config']['app']['collect_timespan']);
- } else {
- $param['page'] = intval($data['page']['page']) + 1;
- $url = url('api') . '?' . http_build_query($param);
- mac_jump($url, $GLOBALS['config']['app']['collect_timespan'] );
- }
- }
- }
- }
- public function art_json($param)
- {
- $url_param = [];
- $url_param['ac'] = $param['ac'];
- $url_param['t'] = $param['t'];
- $url_param['pg'] = is_numeric($param['page']) ? $param['page'] : '';
- $url_param['h'] = $param['h'];
- $url_param['ids'] = $param['ids'];
- $url_param['wd'] = $param['wd'];
- if($param['ac']!='list'){
- $url_param['ac'] = 'detail';
- }
- $url = $param['cjurl'];
- if(strpos($url,'?')===false){
- $url .='?';
- }
- else{
- $url .='&';
- }
- $url .= http_build_query($url_param). base64_decode($param['param']);
- $result = $this->checkCjUrl($url);
- if ($result['code'] > 1) {
- return $result;
- }
- $html = mac_curl_get($url);
- if(empty($html)){
- return ['code'=>1001, 'msg'=>lang('model/collect/get_html_err') . ', url: ' . $url];
- }
- $html = mac_filter_tags($html);
- $json = json_decode($html,true);
- if(!$json){
- return ['code'=>1002, 'msg'=>lang('model/collect/json_err') . ': ' . mb_substr($html, 0, 15)];
- }
- $array_page = [];
- $array_page['page'] = $json['page'];
- $array_page['pagecount'] = $json['pagecount'];
- $array_page['pagesize'] = $json['limit'];
- $array_page['recordcount'] = $json['total'];
- $array_page['url'] = $url;
- $type_list = model('Type')->getCache('type_list');
- $bind_list = config('bind');
- $key = 0;
- $array_data = [];
- foreach($json['list'] as $key=>$v){
- $array_data[$key] = $v;
- $bind_key = $param['cjflag'] .'_'.$v['type_id'];
- if($bind_list[$bind_key] >0){
- $array_data[$key]['type_id'] = $bind_list[$bind_key];
- }
- else{
- $array_data[$key]['type_id'] = 0;
- }
- }
- $array_type = [];
- $key=0;
- //分类列表
- if($param['ac'] == 'list'){
- foreach($json['class'] as $k=>$v){
- $array_type[$key]['type_id'] = $v['type_id'];
- $array_type[$key]['type_name'] = $v['type_name'];
- $key++;
- }
- }
- $res = ['code'=>1, 'msg'=>'ok', 'page'=>$array_page, 'type'=>$array_type, 'data'=>$array_data ];
- return $res;
- }
- public function manga_json($param)
- {
- $url_param = [];
- $url_param['ac'] = $param['ac'];
- $url_param['t'] = $param['t'];
- $url_param['pg'] = is_numeric($param['page']) ? $param['page'] : '';
- $url_param['h'] = $param['h'];
- $url_param['ids'] = $param['ids'];
- $url_param['wd'] = $param['wd'];
- if($param['ac']!='list'){
- $url_param['ac'] = 'detail';
- }
- $url = $param['cjurl'];
- if(strpos($url,'?')===false){
- $url .='?';
- }
- else{
- $url .='&';
- }
- $url .= http_build_query($url_param). base64_decode($param['param']);
- $result = $this->checkCjUrl($url);
- if ($result['code'] > 1) {
- return $result;
- }
- $html = mac_curl_get($url);
- if(empty($html)){
- return ['code'=>1001, 'msg'=>lang('model/collect/get_html_err') . ', url: ' . $url];
- }
- $html = mac_filter_tags($html);
- $json = json_decode($html,true);
- if(!$json){
- return ['code'=>1002, 'msg'=>lang('model/collect/json_err') . ': ' . mb_substr($html, 0, 15)];
- }
- $array_page = [];
- $array_page['page'] = $json['page'];
- $array_page['pagecount'] = $json['pagecount'];
- $array_page['pagesize'] = $json['limit'];
- $array_page['recordcount'] = $json['total'];
- $array_page['url'] = $url;
- $type_list = model('Type')->getCache('type_list');
- $bind_list = config('bind');
- $key = 0;
- $array_data = [];
- foreach($json['list'] as $key=>$v){
- $array_data[$key] = $v;
- $bind_key = $param['cjflag'] .'_'.$v['type_id'];
- if($bind_list[$bind_key] >0){
- $array_data[$key]['type_id'] = $bind_list[$bind_key];
- }
- else{
- $array_data[$key]['type_id'] = 0;
- }
- }
- $array_type = [];
- $key=0;
- //分类列表
- if($param['ac'] == 'list'){
- foreach($json['class'] as $k=>$v){
- $array_type[$key]['type_id'] = $v['type_id'];
- $array_type[$key]['type_name'] = $v['type_name'];
- $key++;
- }
- }
- $res = ['code'=>1, 'msg'=>'ok', 'page'=>$array_page, 'type'=>$array_type, 'data'=>$array_data ];
- return $res;
- }
- public function art_data($param,$data,$show=1)
- {
- if($show==1) {
- mac_echo('[' . __FUNCTION__ . '] ' . lang('model/collect/data_tip1',[$data['page']['page'],$data['page']['pagecount'],$data['page']['url']]));
- }
- $config = config('maccms.collect');
- $config = $config['art'];
- $config_sync_pic = $param['sync_pic_opt'] > 0 ? $param['sync_pic_opt'] : $config['pic'];
- $type_list = model('Type')->getCache('type_list');
- $filter_arr = explode(',',$config['filter']); $filter_arr = array_filter($filter_arr);
- $pse_rnd = explode('#',$config['words']); $pse_rnd = array_filter($pse_rnd);
- $pse_syn = mac_txt_explain($config['thesaurus'], true);
- foreach($data['data'] as $k=>$v){
- $color='red';
- $des='';
- $msg='';
- $tmp='';
- if($v['type_id'] ==0){
- $des = lang('model/collect/type_err');
- }
- elseif(empty($v['art_name'])) {
- $des = lang('model/collect/name_err');
- }
- elseif( mac_array_filter($filter_arr,$v['art_name']) !==false) {
- $des = lang('model/collect/name_in_filter_err');
- }
- else {
- unset($v['art_id']);
- foreach($v as $k2=>$v2){
- if(strpos($k2,'_content')===false) {
- $v[$k2] = strip_tags($v2);
- }
- }
- $v['art_name'] = trim($v['art_name']);
- $v['type_id_1'] = intval($type_list[$v['type_id']]['type_pid']);
- $v['art_en'] = Pinyin::get($v['art_name']);
- $v['art_letter'] = strtoupper(substr($v['art_en'],0,1));
- $v['art_time_add'] = time();
- $v['art_time'] = time();
- $v['art_status'] = intval($config['status']);
- $v['art_lock'] = intval($v['art_lock']);
- if(!empty($v['art_status'])) {
- $v['art_status'] = intval($v['art_status']);
- }
- $v['art_level'] = intval($v['art_level']);
- $v['art_hits'] = intval($v['art_hits']);
- $v['art_hits_day'] = intval($v['art_hits_day']);
- $v['art_hits_week'] = intval($v['art_hits_week']);
- $v['art_hits_month'] = intval($v['art_hits_month']);
- $v['art_stint'] = intval($v['art_stint']);
- $v['art_up'] = intval($v['art_up']);
- $v['art_down'] = intval($v['art_down']);
- $v['art_score'] = floatval($v['art_score']);
- $v['art_score_all'] = intval($v['art_score_all']);
- $v['art_score_num'] = intval($v['art_score_num']);
- if($config['hits_start']>0 && $config['hits_end']>0) {
- $v['art_hits'] = rand($config['hits_start'], $config['hits_end']);
- $v['art_hits_day'] = rand($config['hits_start'], $config['hits_end']);
- $v['art_hits_week'] = rand($config['hits_start'], $config['hits_end']);
- $v['art_hits_month'] = rand($config['hits_start'], $config['hits_end']);
- }
- if($config['updown_start']>0 && $config['updown_end']){
- $v['art_up'] = rand($config['updown_start'], $config['updown_end']);
- $v['art_down'] = rand($config['updown_start'], $config['updown_end']);
- }
- if($config['score']==1) {
- $v['art_score_num'] = rand(1, 1000);
- $v['art_score_all'] = $v['art_score_num'] * rand(1, 10);
- $v['art_score'] = round($v['art_score_all'] / $v['art_score_num'], 1);
- }
- if ($config['psernd'] == 1) {
- $v['art_content'] = mac_rep_pse_rnd($pse_rnd, $v['art_content']);
- }
- if ($config['psesyn'] == 1) {
- $v['art_content'] = mac_rep_pse_syn($pse_syn, $v['art_content']);
- }
- if(empty($v['art_blurb'])){
- $v['art_blurb'] = mac_substring( strip_tags( str_replace('$$$','',$v['art_content']) ) ,100);
- }
- $where = [];
- $where['art_name'] = $v['art_name'];
- if (strpos($config['inrule'], 'b')!==false) {
- $where['type_id'] = $v['type_id'];
- }
- //验证地址
- $cj_title_arr = explode('$$$',$v['art_title'] );
- $cj_note_arr = explode('$$$',$v['art_note']);
- $cj_content_arr = explode('$$$',$v['art_content']);
- $tmp_title_arr=[];
- $tmp_note_arr=[];
- $tmp_content_arr=[];
- foreach($cj_content_arr as $kk=>$vv){
- $tmp_content_arr[] = $vv;
- $tmp_title_arr[] = $cj_title_arr[$kk];
- $tmp_note_arr[] = $cj_note_arr[$kk];
- }
- $v['art_title'] = join('$$$', (array)$tmp_title_arr);
- $v['art_note'] = join('$$$', (array)$tmp_note_arr);
- $v['art_content'] = join('$$$', (array)$tmp_content_arr);
- $info = model('Art')->where($where)->find();
- if (!$info) {
- $tmp = $this->syncImages($config_sync_pic, $v['art_pic'],'art');
- $v['art_pic'] = (string)$tmp['pic'];
- $msg = $tmp['msg'];
- $res = model('Art')->insert($v);
- if($res===false){
- }
- $color ='green';
- $des= lang('model/collect/add_ok');
- }
- else {
- if(empty($config['uprule'])){
- $des = lang('model/collect/uprule_empty');
- }
- elseif($info['art_lock'] == 1) {
- $des = lang('model/collect/data_lock');
- }
- else {
- unset($v['art_time_add']);
- $old_art_title = $info['art_title'];
- $old_art_note = $info['art_note'];
- $old_art_content = $info['art_content'];
- $cj_art_title = $v['art_title'];
- $cj_art_note = $v['art_note'];
- $cj_art_content = $v['art_content'];
- $rc=true;
- if($rc){
- $update=[];
- if(strpos(','.$config['uprule'],'a')!==false && !empty($v['art_content']) && $v['art_content']!=$info['art_content']){
- $update['art_content'] = $v['art_content'];
- }
- if(strpos(','.$config['uprule'],'b')!==false && !empty($v['art_author']) && $v['art_author']!=$info['art_author']){
- $update['art_author'] = $v['art_author'];
- }
- if(strpos(','.$config['uprule'],'c')!==false && !empty($v['art_from']) && $v['art_from']!=$info['art_from']){
- $update['art_from'] = $v['art_from'];
- }
- if(strpos(','.$config['uprule'],'d')!==false && (substr($info["art_pic"], 0, 4) == "http" || empty($info['art_pic'])) && $v['art_pic']!=$info['art_pic'] ){
- $tmp = $this->syncImages($config_sync_pic, $v['art_pic'],'art');
- $update['art_pic'] = (string)$tmp['pic'];
- $msg =$tmp['msg'];
- }
- if(strpos(','.$config['uprule'],'e')!==false && !empty($v['art_tag']) && $v['art_tag']!=$info['art_tag']){
- $update['art_tag'] = $v['art_tag'];
- }
- if(strpos(','.$config['uprule'],'f')!==false && !empty($v['art_blurb']) && $v['art_blurb']!=$info['art_blurb']){
- $update['art_blurb'] = $v['art_blurb'];
- }
- if(count($update)>0){
- $update['art_time'] = time();
- $where = [];
- $where['art_id'] = $info['art_id'];
- $res = model('Art')->where($where)->update($update);
- $color = 'green';
- if($res===false){
- }
- }
- else{
- $des = lang('model/collect/not_need_update');
- }
- }
- }
- }
- }
- if($show==1) {
- mac_echo( ($k + 1) . $v['art_name'] . "<font color=$color>" .$des .'</font>'. $msg . '');
- }
- else{
- return ['code'=>($color=='red' ? 1001 : 1),'msg'=> $v['art_name'] .' '.$des ];
- }
- }
- $key = $GLOBALS['config']['app']['cache_flag']. '_'.'collect_break_art';
- if(ENTRANCE=='api'){
- Cache::rm($key);
- if ($data['page']['page'] < $data['page']['pagecount']) {
- $param['page'] = intval($data['page']['page']) + 1;
- $res = $this->art($param);
- if($res['code']>1){
- return $this->error($res['msg']);
- }
- $this->art_data($param,$res );
- }
- mac_echo(lang('model/collect/is_over'));
- die;
- }
- if(empty($GLOBALS['config']['app']['collect_timespan'])){
- $GLOBALS['config']['app']['collect_timespan'] = 3;
- }
- if($show==1) {
- if ($param['ac'] == 'cjsel') {
- Cache::rm($key);
- mac_echo(lang('model/collect/is_over'));
- unset($param['ids']);
- $param['ac'] = 'list';
- $url = url('api') . '?' . http_build_query($param);
- $ref = $_SERVER["HTTP_REFERER"];
- if(!empty($ref)){
- $url = $ref;
- }
- mac_jump($url, $GLOBALS['config']['app']['collect_timespan']);
- } else {
- if ($data['page']['page'] >= $data['page']['pagecount']) {
- Cache::rm($key);
- mac_echo(lang('model/collect/is_over'));
- unset($param['page']);
- $param['ac'] = 'list';
- $url = url('api') . '?' . http_build_query($param);
- mac_jump($url, $GLOBALS['config']['app']['collect_timespan']);
- } else {
- $param['page'] = intval($data['page']['page']) + 1;
- $url = url('api') . '?' . http_build_query($param);
- mac_jump($url, $GLOBALS['config']['app']['collect_timespan']);
- }
- }
- }
- }
- public function actor_json($param)
- {
- $url_param = [];
- $url_param['ac'] = $param['ac'];
- $url_param['t'] = $param['t'];
- $url_param['pg'] = is_numeric($param['page']) ? $param['page'] : '';
- $url_param['h'] = $param['h'];
- $url_param['ids'] = $param['ids'];
- $url_param['wd'] = $param['wd'];
- if($param['ac']!='list'){
- $url_param['ac'] = 'detail';
- }
- $url = $param['cjurl'];
- if(strpos($url,'?')===false){
- $url .='?';
- }
- else{
- $url .='&';
- }
- $url .= http_build_query($url_param).base64_decode($param['param']);
- $result = $this->checkCjUrl($url);
- if ($result['code'] > 1) {
- return $result;
- }
- $html = mac_curl_get($url);
- if(empty($html)){
- return ['code'=>1001, 'msg'=>lang('model/collect/get_html_err') . ', url: ' . $url];
- }
- $html = mac_filter_tags($html);
- $json = json_decode($html,true);
- if(!$json){
- return ['code'=>1002, 'msg'=>lang('model/collect/json_err') . ': ' . mb_substr($html, 0, 15)];
- }
- $array_page = [];
- $array_page['page'] = $json['page'];
- $array_page['pagecount'] = $json['pagecount'];
- $array_page['pagesize'] = $json['limit'];
- $array_page['recordcount'] = $json['total'];
- $array_page['url'] = $url;
- $type_list = model('Type')->getCache('type_list');
- $bind_list = config('bind');
- $key = 0;
- $array_data = [];
- foreach($json['list'] as $key=>$v){
- $array_data[$key] = $v;
- $bind_key = $param['cjflag'] .'_'.$v['type_id'];
- if($bind_list[$bind_key] >0){
- $array_data[$key]['type_id'] = $bind_list[$bind_key];
- }
- else{
- $array_data[$key]['type_id'] = 0;
- }
- }
- $array_type = [];
- $key=0;
- //分类列表
- if($param['ac'] == 'list'){
- foreach($json['class'] as $k=>$v){
- $array_type[$key]['type_id'] = $v['type_id'];
- $array_type[$key]['type_name'] = $v['type_name'];
- $key++;
- }
- }
- $res = ['code'=>1, 'msg'=>'ok', 'page'=>$array_page, 'type'=>$array_type, 'data'=>$array_data ];
- return $res;
- }
- public function actor_data($param,$data,$show=1)
- {
- if($show==1) {
- mac_echo('[' . __FUNCTION__ . '] ' . lang('model/collect/data_tip1',[$data['page']['page'],$data['page']['pagecount'],$data['page']['url']]));
- }
- $config = config('maccms.collect');
- $config = $config['actor'];
- $config_sync_pic = $param['sync_pic_opt'] > 0 ? $param['sync_pic_opt'] : $config['pic'];
- $type_list = model('Type')->getCache('type_list');
- $filter_arr = explode(',',$config['filter']); $filter_arr = array_filter($filter_arr);
- $pse_rnd = explode('#',$config['words']); $pse_rnd = array_filter($pse_rnd);
- $pse_syn = mac_txt_explain($config['thesaurus'], true);
- foreach($data['data'] as $k=>$v){
- $color='red';
- $des='';
- $msg='';
- $tmp='';
- if($v['type_id'] ==0){
- $des = lang('model/collect/type_err');
- }
- elseif(empty($v['actor_name']) || empty($v['actor_sex'])) {
- $des = lang('odel/collect/actor_data_require');
- }
- elseif( mac_array_filter($filter_arr,$v['actor_name'])!==false) {
- $des = lang('model/collect/name_in_filter_err');
- }
- else {
- unset($v['actor_id']);
- foreach($v as $k2=>$v2){
- if(strpos($k2,'_content')===false) {
- $v[$k2] = strip_tags($v2);
- }
- }
- $v['actor_name'] = trim($v['actor_name']);
- $v['type_id_1'] = intval($type_list[$v['type_id']]['type_pid']);
- $v['actor_en'] = Pinyin::get($v['actor_name']);
- $v['actor_letter'] = strtoupper(substr($v['actor_en'],0,1));
- $v['actor_time_add'] = time();
- $v['actor_time'] = time();
- $v['actor_status'] = intval($config['status']);
- $v['actor_lock'] = intval($v['actor_lock']);
- if(!empty($v['actor_status'])) {
- $v['actor_status'] = intval($v['actor_status']);
- }
- $v['actor_level'] = intval($v['actor_level']);
- $v['actor_hits'] = intval($v['actor_hits']);
- $v['actor_hits_day'] = intval($v['actor_hits_day']);
- $v['actor_hits_week'] = intval($v['actor_hits_week']);
- $v['actor_hits_month'] = intval($v['actor_hits_month']);
- $v['actor_up'] = intval($v['actor_up']);
- $v['actor_down'] = intval($v['actor_down']);
- $v['actor_score'] = floatval($v['actor_score']);
- $v['actor_score_all'] = intval($v['actor_score_all']);
- $v['actor_score_num'] = intval($v['actor_score_num']);
- if($config['hits_start']>0 && $config['hits_end']>0) {
- $v['actor_hits'] = rand($config['hits_start'], $config['hits_end']);
- $v['actor_hits_day'] = rand($config['hits_start'], $config['hits_end']);
- $v['actor_hits_week'] = rand($config['hits_start'], $config['hits_end']);
- $v['actor_hits_month'] = rand($config['hits_start'], $config['hits_end']);
- }
- if($config['updown_start']>0 && $config['updown_end']){
- $v['actor_up'] = rand($config['updown_start'], $config['updown_end']);
- $v['actor_down'] = rand($config['updown_start'], $config['updown_end']);
- }
- if($config['score']==1) {
- $v['actor_score_num'] = rand(1, 1000);
- $v['actor_score_all'] = $v['actor_score_num'] * rand(1, 10);
- $v['actor_score'] = round($v['actor_score_all'] / $v['actor_score_num'], 1);
- }
- if ($config['psernd'] == 1) {
- $v['actor_content'] = mac_rep_pse_rnd($pse_rnd, $v['actor_content']);
- }
- if ($config['psesyn'] == 1) {
- $v['actor_content'] = mac_rep_pse_syn($pse_syn, $v['actor_content']);
- }
- if(empty($v['actor_blurb'])){
- $v['actor_blurb'] = mac_substring( strip_tags($v['actor_content']) ,100);
- }
- $where = [];
- $where['actor_name'] = $v['actor_name'];
- if (strpos($config['inrule'], 'b')!==false) {
- $where['actor_sex'] = $v['actor_sex'];
- }
- if (strpos($config['inrule'], 'c')!==false) {
- $where['type_id'] = $v['type_id'];
- }
- $info = model('Actor')->where($where)->find();
- if (!$info) {
- $tmp = $this->syncImages($config_sync_pic, $v['actor_pic'],'actor');
- $v['actor_pic'] = $tmp['pic'];
- $msg = $tmp['msg'];
- $res = model('Actor')->insert($v);
- if($res===false){
- }
- $color ='green';
- $des= lang('model/collect/add_ok');
- } else {
- if(empty($config['uprule'])){
- $des = lang('model/collect/uprule_empty');
- }
- elseif ($info['actor_lock'] == 1) {
- $des = lang('model/collect/data_lock');
- }
- else {
- unset($v['actor_time_add']);
- $rc=true;
- if($rc){
- $update=[];
- if(strpos(','.$config['uprule'],'a')!==false && !empty($v['actor_content']) && $v['actor_content']!=$info['actor_content']){
- $update['actor_content'] = $v['actor_content'];
- }
- if(strpos(','.$config['uprule'],'b')!==false && !empty($v['actor_blurb']) && $v['actor_blurb']!=$info['actor_blurb']){
- $update['actor_blurb'] = $v['actor_blurb'];
- }
- if(strpos(','.$config['uprule'],'c')!==false && !empty($v['actor_remarks']) && $v['actor_remarks']!=$info['actor_remarks']){
- $update['actor_remarks'] = $v['actor_remarks'];
- }
- if(strpos(','.$config['uprule'],'d')!==false && !empty($v['actor_works']) && $v['actor_works']!=$info['actor_works']){
- $update['actor_works'] = $v['actor_works'];
- }
- if(strpos(','.$config['uprule'],'e')!==false && (substr($info["actor_pic"], 0, 4) == "http" ||empty($info['actor_pic']) ) && $v['actor_pic']!=$info['actor_pic'] ){
- $tmp = $this->syncImages($config_sync_pic, $v['actor_pic'],'actor');
- $update['actor_pic'] =$tmp['pic'];
- $msg =$tmp['msg'];
- }
- if(count($update)>0){
- $update['actor_time'] = time();
- $where = [];
- $where['actor_id'] = $info['actor_id'];
- $res = model('Actor')->where($where)->update($update);
- $color = 'green';
- if($res===false){
- }
- }
- else{
- $des = lang('model/collect/not_need_update');
- }
- }
- }
- }
- }
- if($show==1) {
- mac_echo( ($k + 1) . $v['actor_name'] . "<font color=$color>" .$des .'</font>'. $msg . '');
- }
- else{
- return ['code'=>($color=='red' ? 1001 : 1),'msg'=> $v['actor_name'] .' '.$des ];
- }
- }
- $key = $GLOBALS['config']['app']['cache_flag']. '_'.'collect_break_actor';
- if(ENTRANCE=='api'){
- Cache::rm($key);
- if ($data['page']['page'] < $data['page']['pagecount']) {
- $param['page'] = intval($data['page']['page']) + 1;
- $res = $this->actor($param);
- if($res['code']>1){
- return $this->error($res['msg']);
- }
- $this->actor_data($param,$res );
- }
- mac_echo(lang('model/collect/is_over'));
- die;
- }
- if(empty($GLOBALS['config']['app']['collect_timespan'])){
- $GLOBALS['config']['app']['collect_timespan'] = 3;
- }
- if($show==1) {
- if ($param['ac'] == 'cjsel') {
- Cache::rm($key);
- mac_echo(lang('model/collect/is_over'));
- unset($param['ids']);
- $param['ac'] = 'list';
- $url = url('api') . '?' . http_build_query($param);
- $ref = $_SERVER["HTTP_REFERER"];
- if(!empty($ref)){
- $url = $ref;
- }
- mac_jump($url, $GLOBALS['config']['app']['collect_timespan']);
- } else {
- if ($data['page']['page'] >= $data['page']['pagecount']) {
- Cache::rm($key);
- mac_echo(lang('model/collect/is_over'));
- unset($param['page']);
- $param['ac'] = 'list';
- $url = url('api') . '?' . http_build_query($param);
- mac_jump($url, $GLOBALS['config']['app']['collect_timespan']);
- } else {
- $param['page'] = intval($data['page']['page']) + 1;
- $url = url('api') . '?' . http_build_query($param);
- mac_jump($url, $GLOBALS['config']['app']['collect_timespan']);
- }
- }
- }
- }
- public function role_json($param)
- {
- $url_param = [];
- $url_param['ac'] = $param['ac'];
- $url_param['t'] = $param['t'];
- $url_param['pg'] = is_numeric($param['page']) ? $param['page'] : '';
- $url_param['h'] = $param['h'];
- $url_param['ids'] = $param['ids'];
- $url_param['wd'] = $param['wd'];
- if($param['ac']!='list'){
- $url_param['ac'] = 'detail';
- }
- $url = $param['cjurl'];
- if(strpos($url,'?')===false){
- $url .='?';
- }
- else{
- $url .='&';
- }
- $url .= http_build_query($url_param).base64_decode($param['param']);
- $result = $this->checkCjUrl($url);
- if ($result['code'] > 1) {
- return $result;
- }
- $html = mac_curl_get($url);
- if(empty($html)){
- return ['code'=>1001, 'msg'=>lang('model/collect/get_html_err') . ', url: ' . $url];
- }
- $html = mac_filter_tags($html);
- $json = json_decode($html,true);
- if(!$json){
- return ['code'=>1002, 'msg'=>lang('model/collect/json_err') . ': ' . mb_substr($html, 0, 15)];
- }
- $array_page = [];
- $array_page['page'] = $json['page'];
- $array_page['pagecount'] = $json['pagecount'];
- $array_page['pagesize'] = $json['limit'];
- $array_page['recordcount'] = $json['total'];
- $array_page['url'] = $url;
- $key = 0;
- $array_data = [];
- foreach($json['list'] as $key=>$v){
- $array_data[$key] = $v;
- }
- $res = ['code'=>1, 'msg'=>'ok', 'page'=>$array_page, 'data'=>$array_data ];
- return $res;
- }
- public function role_data($param,$data,$show=1)
- {
- if($show==1) {
- mac_echo('[' . __FUNCTION__ . '] ' . lang('model/collect/data_tip1',[$data['page']['page'],$data['page']['pagecount'],$data['page']['url']]));
- }
- $config = config('maccms.collect');
- $config = $config['role'];
- $config_sync_pic = $param['sync_pic_opt'] > 0 ? $param['sync_pic_opt'] : $config['pic'];
- $filter_arr = explode(',',$config['filter']); $filter_arr = array_filter($filter_arr);
- $pse_rnd = explode('#',$config['words']); $pse_rnd = array_filter($pse_rnd);
- $pse_syn = mac_txt_explain($config['thesaurus'], true);
- foreach($data['data'] as $k=>$v){
- $color='red';
- $des='';
- $msg='';
- $tmp='';
- if(empty($v['role_name']) || empty($v['role_actor']) || empty($v['vod_name']) ) {
- $des = lang('model/collect/role_data_require');
- }
- elseif( mac_array_filter($filter_arr,$v['role_name']) !==false) {
- $des = lang('model/collect/name_in_filter_err');
- }
- else {
- unset($v['role_id']);
- foreach($v as $k2=>$v2){
- if(strpos($k2,'_content')===false) {
- $v[$k2] = strip_tags($v2);
- }
- }
- $v['role_en'] = Pinyin::get($v['role_name']);
- $v['role_letter'] = strtoupper(substr($v['role_en'],0,1));
- $v['role_time_add'] = time();
- $v['role_time'] = time();
- $v['role_status'] = intval($config['status']);
- $v['role_lock'] = intval($v['role_lock']);
- if(!empty($v['role_status'])) {
- $v['role_status'] = intval($v['role_status']);
- }
- $v['role_level'] = intval($v['role_level']);
- $v['role_hits'] = intval($v['role_hits']);
- $v['role_hits_day'] = intval($v['role_hits_day']);
- $v['role_hits_week'] = intval($v['role_hits_week']);
- $v['role_hits_month'] = intval($v['role_hits_month']);
- $v['role_up'] = intval($v['role_up']);
- $v['role_down'] = intval($v['role_down']);
- $v['role_score'] = floatval($v['role_score']);
- $v['role_score_all'] = intval($v['role_score_all']);
- $v['role_score_num'] = intval($v['role_score_num']);
- if($config['hits_start']>0 && $config['hits_end']>0) {
- $v['role_hits'] = rand($config['hits_start'], $config['hits_end']);
- $v['role_hits_day'] = rand($config['hits_start'], $config['hits_end']);
- $v['role_hits_week'] = rand($config['hits_start'], $config['hits_end']);
- $v['role_hits_month'] = rand($config['hits_start'], $config['hits_end']);
- }
- if($config['updown_start']>0 && $config['updown_end']){
- $v['role_up'] = rand($config['updown_start'], $config['updown_end']);
- $v['role_down'] = rand($config['updown_start'], $config['updown_end']);
- }
- if($config['score']==1) {
- $v['role_score_num'] = rand(1, 1000);
- $v['role_score_all'] = $v['role_score_num'] * rand(1, 10);
- $v['role_score'] = round($v['role_score_all'] / $v['role_score_num'], 1);
- }
- if ($config['psernd'] == 1) {
- $v['role_content'] = mac_rep_pse_rnd($pse_rnd, $v['role_content']);
- }
- if ($config['psesyn'] == 1) {
- $v['role_content'] = mac_rep_pse_syn($pse_syn, $v['role_content']);
- }
- $where = [];
- $where['role_name'] = $v['role_name'];
- $where['role_actor'] = $v['role_actor'];
- $where2 = [];
- $blend = false;
- if(!empty($v['douban_id'])){
- $where2['vod_douban_id'] = ['eq',$v['douban_id']];
- unset($v['douban_id']);
- }
- else{
- $where2['vod_name'] = ['eq',$v['vod_name']];
- }
- if (strpos($config['inrule'], 'c')!==false) {
- $where2['vod_actor'] = ['like', mac_like_arr($v['role_actor']), 'OR'];
- }
- if (strpos($config['inrule'], 'd')!==false) {
- $where2['vod_director'] = ['like', mac_like_arr($v['role_actor']), 'OR'];
- }
- if(!empty($where2['vod_actor']) && !empty($where2['vod_director'])){
- $blend = true;
- $GLOBALS['blend'] = [
- 'vod_actor' => $where2['vod_actor'],
- 'vod_director' => $where2['vod_director']
- ];
- unset($where2['vod_actor'],$where2['vod_director']);
- }
- if($blend===false){
- $vod_info = model('Vod')->where($where2)->find();
- }
- else{
- $vod_info = model('Vod')->where($where2)
- ->where(function($query){
- $query->where('vod_director',$GLOBALS['blend']['vod_director'])
- ->whereOr('vod_actor',$GLOBALS['blend']['vod_actor']);
- })
- ->find();
- }
- if (!$vod_info) {
- $des = lang('model/collect/not_found_rel_vod');
- }
- else {
- $v['role_rid'] = $vod_info['vod_id'];
- $where['role_rid'] = $vod_info['vod_id'];
- $info = model('Role')->where($where)->find();
- if (!$info) {
- $tmp = $this->syncImages($config_sync_pic, $v['role_pic'], 'role');
- $v['role_pic'] = $tmp['pic'];
- $msg = $tmp['msg'];
- $res = model('Role')->insert($v);
- if ($res === false) {
- }
- $color = 'green';
- $des = lang('model/collect/add_ok');
- } else {
- if(empty($config['uprule'])){
- $des = lang('model/collect/uprule_empty');
- }
- elseif ($info['role_lock'] == 1) {
- $des = lang('model/collect/data_lock');
- }
- else {
- unset($v['role_time_add']);
- $rc = true;
- if ($rc) {
- $update = [];
- if (strpos(',' . $config['uprule'], 'a') !== false && !empty($v['role_content']) && $v['role_content'] != $info['role_content']) {
- $update['role_content'] = $v['role_content'];
- }
- if (strpos(',' . $config['uprule'], 'b') !== false && !empty($v['role_remarks']) && $v['role_remarks'] != $info['role_remarks']) {
- $update['role_remarks'] = $v['role_remarks'];
- }
- if (strpos(',' . $config['uprule'], 'c') !== false && (substr($info["role_pic"], 0, 4) == "http" || empty($info['role_pic'])) && $v['role_pic'] != $info['role_pic']) {
- $tmp = $this->syncImages($config_sync_pic, $v['role_pic'], 'role');
- $update['role_pic'] = $tmp['pic'];
- $msg = $tmp['msg'];
- }
- if(count($update)>0){
- $update['role_time'] = time();
- $where = [];
- $where['role_id'] = $info['role_id'];
- $res = model('Role')->where($where)->update($update);
- $color = 'green';
- if ($res === false) {
- }
- }
- else{
- $des = lang('model/collect/not_need_update');
- }
- }
- }
- }
- }
- }
- if($show==1) {
- mac_echo( ($k + 1) . $v['role_name'] . "<font color=$color>" .$des .'</font>'. $msg . '');
- }
- else{
- return ['code'=>($color=='red' ? 1001 : 1),'msg'=> $v['role_name'] .' '.$des ];
- }
- }
- $key = $GLOBALS['config']['app']['cache_flag']. '_'.'collect_break_role';
- if(ENTRANCE=='api'){
- Cache::rm($key);
- if ($data['page']['page'] < $data['page']['pagecount']) {
- $param['page'] = intval($data['page']['page']) + 1;
- $res = $this->role($param);
- if($res['code']>1){
- return $this->error($res['msg']);
- }
- $this->role_data($param,$res );
- }
- mac_echo(lang('model/collect/is_over'));
- die;
- }
- if(empty($GLOBALS['config']['app']['collect_timespan'])){
- $GLOBALS['config']['app']['collect_timespan'] = 3;
- }
- if($show==1) {
- if ($param['ac'] == 'cjsel') {
- Cache::rm($key);
- mac_echo(lang('model/collect/is_over'));
- unset($param['ids']);
- $param['ac'] = 'list';
- $url = url('api') . '?' . http_build_query($param);
- $ref = $_SERVER["HTTP_REFERER"];
- if(!empty($ref)){
- $url = $ref;
- }
- mac_jump($url, $GLOBALS['config']['app']['collect_timespan']);
- } else {
- if ($data['page']['page'] >= $data['page']['pagecount']) {
- Cache::rm($key);
- mac_echo(lang('model/collect/is_over'));
- unset($param['page']);
- $param['ac'] = 'list';
- $url = url('api') . '?' . http_build_query($param);
- mac_jump($url, $GLOBALS['config']['app']['collect_timespan']);
- } else {
- $param['page'] = intval($data['page']['page']) + 1;
- $url = url('api') . '?' . http_build_query($param);
- mac_jump($url, $GLOBALS['config']['app']['collect_timespan']);
- }
- }
- }
- }
- public function website_json($param)
- {
- $url_param = [];
- $url_param['ac'] = $param['ac'];
- $url_param['t'] = $param['t'];
- $url_param['pg'] = is_numeric($param['page']) ? $param['page'] : '';
- $url_param['h'] = $param['h'];
- $url_param['ids'] = $param['ids'];
- $url_param['wd'] = $param['wd'];
- if($param['ac']!='list'){
- $url_param['ac'] = 'detail';
- }
- $url = $param['cjurl'];
- if(strpos($url,'?')===false){
- $url .='?';
- }
- else{
- $url .='&';
- }
- $url .= http_build_query($url_param).base64_decode($param['param']);
- $result = $this->checkCjUrl($url);
- if ($result['code'] > 1) {
- return $result;
- }
- $html = mac_curl_get($url);
- if(empty($html)){
- return ['code'=>1001, 'msg'=>lang('model/collect/get_html_err') . ', url: ' . $url];
- }
- $html = mac_filter_tags($html);
- $json = json_decode($html,true);
- if(!$json){
- return ['code'=>1002, 'msg'=>lang('model/collect/json_err') . ': ' . mb_substr($html, 0, 15)];
- }
- $array_page = [];
- $array_page['page'] = $json['page'];
- $array_page['pagecount'] = $json['pagecount'];
- $array_page['pagesize'] = $json['limit'];
- $array_page['recordcount'] = $json['total'];
- $array_page['url'] = $url;
- $type_list = model('Type')->getCache('type_list');
- $bind_list = config('bind');
- $key = 0;
- $array_data = [];
- foreach($json['list'] as $key=>$v){
- $array_data[$key] = $v;
- $bind_key = $param['cjflag'] .'_'.$v['type_id'];
- if($bind_list[$bind_key] >0){
- $array_data[$key]['type_id'] = $bind_list[$bind_key];
- }
- else{
- $array_data[$key]['type_id'] = 0;
- }
- }
- $array_type = [];
- $key=0;
- //分类列表
- if($param['ac'] == 'list'){
- foreach($json['class'] as $k=>$v){
- $array_type[$key]['type_id'] = $v['type_id'];
- $array_type[$key]['type_name'] = $v['type_name'];
- $key++;
- }
- }
- $res = ['code'=>1, 'msg'=>'ok', 'page'=>$array_page, 'type'=>$array_type, 'data'=>$array_data ];
- return $res;
- }
- public function website_data($param,$data,$show=1)
- {
- if($show==1) {
- mac_echo('[' . __FUNCTION__ . '] ' . lang('model/collect/data_tip1',[$data['page']['page'],$data['page']['pagecount'],$data['page']['url']]));
- }
- $config = config('maccms.collect');
- $config = $config['website'];
- $config_sync_pic = $param['sync_pic_opt'] > 0 ? $param['sync_pic_opt'] : $config['pic'];
- $type_list = model('Type')->getCache('type_list');
- $filter_arr = explode(',',$config['filter']); $filter_arr = array_filter($filter_arr);
- $pse_rnd = explode('#',$config['words']); $pse_rnd = array_filter($pse_rnd);
- $pse_syn = mac_txt_explain($config['thesaurus'], true);
- foreach($data['data'] as $k=>$v){
- $color='red';
- $des='';
- $msg='';
- $tmp='';
- if($v['type_id'] ==0){
- $des = lang('model/collect/type_err');
- }
- elseif(empty($v['website_name'])) {
- $des = lang('model/collect/name_err');
- }
- elseif( mac_array_filter($filter_arr,$v['website_name'])!==false) {
- $des = lang('model/collect/name_in_filter_err');
- }
- else {
- unset($v['website_id']);
- foreach($v as $k2=>$v2){
- if(strpos($k2,'_content')===false) {
- $v[$k2] = strip_tags($v2);
- }
- }
- $v['website_name'] = trim($v['website_name']);
- $v['type_id_1'] = intval($type_list[$v['type_id']]['type_pid']);
- $v['website_en'] = Pinyin::get($v['website_name']);
- $v['website_letter'] = strtoupper(substr($v['website_en'],0,1));
- $v['website_time_add'] = time();
- $v['website_time'] = time();
- $v['website_status'] = intval($config['status']);
- $v['website_lock'] = intval($v['website_lock']);
- if(!empty($v['website_status'])) {
- $v['website_status'] = intval($v['website_status']);
- }
- $v['website_level'] = intval($v['website_level']);
- $v['website_hits'] = intval($v['website_hits']);
- $v['website_hits_day'] = intval($v['website_hits_day']);
- $v['website_hits_week'] = intval($v['website_hits_week']);
- $v['website_hits_month'] = intval($v['website_hits_month']);
- $v['website_up'] = intval($v['website_up']);
- $v['website_down'] = intval($v['website_down']);
- $v['website_score'] = floatval($v['website_score']);
- $v['website_score_all'] = intval($v['website_score_all']);
- $v['website_score_num'] = intval($v['website_score_num']);
- if($config['hits_start']>0 && $config['hits_end']>0) {
- $v['website_hits'] = rand($config['hits_start'], $config['hits_end']);
- $v['website_hits_day'] = rand($config['hits_start'], $config['hits_end']);
- $v['website_hits_week'] = rand($config['hits_start'], $config['hits_end']);
- $v['website_hits_month'] = rand($config['hits_start'], $config['hits_end']);
- }
- if($config['updown_start']>0 && $config['updown_end']){
- $v['website_up'] = rand($config['updown_start'], $config['updown_end']);
- $v['website_down'] = rand($config['updown_start'], $config['updown_end']);
- }
- if($config['score']==1) {
- $v['website_score_num'] = rand(1, 1000);
- $v['website_score_all'] = $v['website_score_num'] * rand(1, 10);
- $v['website_score'] = round($v['website_score_all'] / $v['website_score_num'], 1);
- }
- if ($config['psernd'] == 1) {
- $v['website_content'] = mac_rep_pse_rnd($pse_rnd, $v['website_content']);
- }
- if ($config['psesyn'] == 1) {
- $v['website_content'] = mac_rep_pse_syn($pse_syn, $v['website_content']);
- }
- if(empty($v['website_blurb'])){
- $v['website_blurb'] = mac_substring( strip_tags($v['website_content']) ,100);
- }
- $where = [];
- $where['website_name'] = $v['website_name'];
- if (strpos($config['inrule'], 'b')!==false) {
- $where['type_id'] = $v['type_id'];
- }
- // 采集网址入库重复规则建议增加跳转url
- // https://github.com/magicblack/maccms10/issues/1071
- if (strpos($config['inrule'], 'c')!==false) {
- $where['website_jumpurl'] = $v['website_jumpurl'];
- }
- $info = model('Website')->where($where)->find();
- if (!$info) {
- $tmp = $this->syncImages($config_sync_pic, $v['website_pic'],'website');
- $v['website_pic'] = $tmp['pic'];
- $msg = $tmp['msg'];
- $res = model('Website')->insert($v);
- if($res===false){
- }
- $color ='green';
- $des= lang('model/collect/add_ok');
- } else {
- if(empty($config['uprule'])){
- $des = lang('model/collect/uprule_empty');
- }
- elseif ($info['website_lock'] == 1) {
- $des = lang('model/collect/data_lock');
- }
- else {
- unset($v['website_time_add']);
- $rc=true;
- if($rc){
- $update=[];
- if(strpos(','.$config['uprule'],'a')!==false && !empty($v['website_content']) && $v['website_content']!=$info['website_content']){
- $update['website_content'] = $v['website_content'];
- }
- if(strpos(','.$config['uprule'],'b')!==false && !empty($v['website_blurb']) && $v['website_blurb']!=$info['website_blurb']){
- $update['website_blurb'] = $v['website_blurb'];
- }
- if(strpos(','.$config['uprule'],'c')!==false && !empty($v['website_remarks']) && $v['website_remarks']!=$info['website_remarks']){
- $update['website_remarks'] = $v['website_remarks'];
- }
- if(strpos(','.$config['uprule'],'d')!==false && !empty($v['website_jumpurl']) && $v['website_jumpurl']!=$info['website_jumpurl']){
- $update['website_jumpurl'] = $v['website_jumpurl'];
- }
- if(strpos(','.$config['uprule'],'e')!==false && (substr($info["website_pic"], 0, 4) == "http" ||empty($info['website_pic']) ) && $v['website_pic']!=$info['website_pic'] ){
- $tmp = $this->syncImages($config_sync_pic, $v['website_pic'],'website');
- $update['website_pic'] =$tmp['pic'];
- $msg =$tmp['msg'];
- }
- if(count($update)>0){
- $update['website_time'] = time();
- $where = [];
- $where['website_id'] = $info['website_id'];
- $res = model('Website')->where($where)->update($update);
- $color = 'green';
- if($res===false){
- }
- }
- else{
- $des = lang('model/collect/not_need_update');
- }
- }
- }
- }
- }
- if($show==1) {
- mac_echo( ($k + 1) . $v['website_name'] . "<font color=$color>" .$des .'</font>'. $msg . '');
- }
- else{
- return ['code'=>($color=='red' ? 1001 : 1),'msg'=> $v['website_name'] .' '.$des ];
- }
- }
- $key = $GLOBALS['config']['app']['cache_flag']. '_'.'collect_break_website';
- if(ENTRANCE=='api'){
- Cache::rm($key);
- if ($data['page']['page'] < $data['page']['pagecount']) {
- $param['page'] = intval($data['page']['page']) + 1;
- $res = $this->actor($param);
- if($res['code']>1){
- return $this->error($res['msg']);
- }
- $this->website_data($param,$res );
- }
- mac_echo(lang('model/collect/is_over'));
- die;
- }
- if(empty($GLOBALS['config']['app']['collect_timespan'])){
- $GLOBALS['config']['app']['collect_timespan'] = 3;
- }
- if($show==1) {
- if ($param['ac'] == 'cjsel') {
- Cache::rm($key);
- mac_echo(lang('model/collect/is_over'));
- unset($param['ids']);
- $param['ac'] = 'list';
- $url = url('api') . '?' . http_build_query($param);
- $ref = $_SERVER["HTTP_REFERER"];
- if(!empty($ref)){
- $url = $ref;
- }
- mac_jump($url, $GLOBALS['config']['app']['collect_timespan']);
- } else {
- if ($data['page']['page'] >= $data['page']['pagecount']) {
- Cache::rm($key);
- mac_echo(lang('model/collect/is_over'));
- unset($param['page']);
- $param['ac'] = 'list';
- $url = url('api') . '?' . http_build_query($param);
- mac_jump($url, $GLOBALS['config']['app']['collect_timespan']);
- } else {
- $param['page'] = intval($data['page']['page']) + 1;
- $url = url('api') . '?' . http_build_query($param);
- mac_jump($url, $GLOBALS['config']['app']['collect_timespan']);
- }
- }
- }
- }
- public function comment_json($param)
- {
- $url_param = [];
- $url_param['ac'] = $param['ac'];
- $url_param['t'] = $param['t'];
- $url_param['pg'] = is_numeric($param['page']) ? $param['page'] : '';
- $url_param['h'] = $param['h'];
- $url_param['ids'] = $param['ids'];
- $url_param['wd'] = $param['wd'];
- if($param['ac']!='list'){
- $url_param['ac'] = 'detail';
- }
- $url = $param['cjurl'];
- if(strpos($url,'?')===false){
- $url .='?';
- }
- else{
- $url .='&';
- }
- $url .= http_build_query($url_param).base64_decode($param['param']);
- $result = $this->checkCjUrl($url);
- if ($result['code'] > 1) {
- return $result;
- }
- $html = mac_curl_get($url);
- if(empty($html)){
- return ['code'=>1001, 'msg'=>lang('model/collect/get_html_err') . ', url: ' . $url];
- }
- $html = mac_filter_tags($html);
- $json = json_decode($html,true);
- if(!$json){
- return ['code'=>1002, 'msg'=>lang('model/collect/json_err') . ': ' . mb_substr($html, 0, 15)];
- }
- $array_page = [];
- $array_page['page'] = $json['page'];
- $array_page['pagecount'] = $json['pagecount'];
- $array_page['pagesize'] = $json['limit'];
- $array_page['recordcount'] = $json['total'];
- $array_page['url'] = $url;
- $key = 0;
- $array_data = [];
- foreach($json['list'] as $key=>$v){
- $array_data[$key] = $v;
- }
- $res = ['code'=>1, 'msg'=>'ok', 'page'=>$array_page, 'data'=>$array_data ];
- return $res;
- }
- public function comment_data($param,$data,$show=1)
- {
- if($show==1) {
- mac_echo('[' . __FUNCTION__ . '] ' . lang('model/collect/data_tip1',[$data['page']['page'],$data['page']['pagecount'],$data['page']['url']]));
- }
- $config = config('maccms.collect');
- $config = $config['comment'];
- $config_sync_pic = $param['sync_pic_opt'] > 0 ? $param['sync_pic_opt'] : $config['pic'];
- $filter_arr = explode(',',$config['filter']); $filter_arr = array_filter($filter_arr);
- $pse_rnd = explode('#',$config['words']); $pse_rnd = array_filter($pse_rnd);
- $pse_syn = mac_txt_explain($config['thesaurus'], true);
- foreach($data['data'] as $k=>$v){
- $color='red';
- $des='';
- $msg='';
- $tmp='';
- if(empty($v['comment_name']) || empty($v['comment_content']) || empty($v['rel_name']) ) {
- $des = lang('model/collect/comment_data_require');
- }
- elseif( mac_array_filter($filter_arr,$v['comment_content']) !==false) {
- $des = lang('model/collect/name_in_filter_err');
- }
- else {
- unset($v['comment_id']);
- foreach($v as $k2=>$v2){
- if(strpos($k2,'_content')===false) {
- $v[$k2] = strip_tags($v2);
- }
- }
- $v['comment_time'] = time();
- $v['comment_status'] = intval($config['status']);
- $v['comment_up'] = intval($v['comment_up']);
- $v['comment_down'] = intval($v['comment_down']);
- $v['comment_mid'] = intval($v['comment_mid']);
- if(!empty($v['comment_ip']) && !is_numeric($v['comment_ip'])){
- $v['comment_ip'] = mac_get_ip_long($v['comment_ip']);
- }
- if($config['updown_start']>0 && $config['updown_end']){
- $v['comment_up'] = rand($config['updown_start'], $config['updown_end']);
- $v['comment_down'] = rand($config['updown_start'], $config['updown_end']);
- }
- if ($config['psernd'] == 1) {
- $v['comment_content'] = mac_rep_pse_rnd($pse_rnd, $v['comment_content']);
- }
- if ($config['psesyn'] == 1) {
- $v['comment_content'] = mac_rep_pse_syn($pse_syn, $v['comment_content']);
- }
- $where = [];
- $where2 = [];
- $blend = false;
- if (strpos($config['inrule'], 'b')!==false) {
- $where['comment_content'] = ['eq', $v['comment_content']];
- }
- if (strpos($config['inrule'], 'c')!==false) {
- $where['comment_name'] = ['eq', $v['comment_name']];
- }
- if(empty($v['rel_id'])){
- if($v['comment_mid']==1){
- if(!empty($v['douban_id'])){
- $where2['vod_douban_id'] = ['eq',$v['douban_id']];
- unset($v['douban_id']);
- }
- else{
- $where2['vod_name'] = ['eq',$v['rel_name']];
- }
- $rel_info = model('Vod')->where($where2)->find();
- }
- elseif($v['comment_mid']==2){
- $where2['art_name'] = ['eq',$v['rel_name']];
- $rel_info = model('Art')->where($where2)->find();
- }
- elseif($v['comment_mid']==3){
- $where2['topic_name'] = ['eq',$v['rel_name']];
- $rel_info = model('Topic')->where($where2)->find();
- }
- elseif($v['comment_mid']==8){
- $where2['actor_name'] = ['eq',$v['rel_name']];
- $rel_info = model('Actor')->where($where2)->find();
- }
- elseif($v['comment_mid']==9){
- $where2['role_name'] = ['eq',$v['rel_name']];
- $rel_info = model('Role')->where($where2)->find();
- }
- elseif($v['comment_mid']==11){
- $where2['website_name'] = ['eq',$v['rel_name']];
- $rel_info = model('Website')->where($where2)->find();
- }
- $rel_id = $rel_info[mac_get_mid_code($v['comment_mid']).'_id'];
- }
- else{
- $rel_id = $v['rel_id'];
- }
- if(empty($rel_id)){
- $des = lang('model/collect/not_found_rel_data');
- }
- else {
- $v['comment_rid'] = $rel_id;
- $info=false;
- if(!empty($where)) {
- $where['comment_rid'] = $rel_id;
- $info = model('Comment')->where($where)->find();
- }
- if (!$info) {
- $msg = isset($tmp['msg']) ? $tmp['msg'] : '';
- $res = model('Comment')->insert($v);
- if ($res === false) {
- }
- $color = 'green';
- $des = lang('model/collect/add_ok');
- } else {
- if(empty($config['uprule'])){
- $des = lang('model/collect/uprule_empty');
- }
- else {
- $rc = true;
- if ($rc) {
- $update = [];
- if (strpos(',' . $config['uprule'], 'a') !== false && !empty($v['comment_time']) && $v['comment_time'] != $info['comment_time']) {
- $update['comment_time'] = $v['comment_time'];
- }
- if(count($update)>0){
- $update['comment_time'] = time();
- $where = [];
- $where['comment_id'] = $info['comment_id'];
- $res = model('Comment')->where($where)->update($update);
- $color = 'green';
- if ($res === false) {
- }
- }
- else{
- $des = lang('model/collect/not_need_update');
- }
- }
- }
- }
- }
- }
- if($show==1) {
- mac_echo( ($k + 1) . $v['comment_content'] . "<font color=$color>" .$des .'</font>'. $msg . '');
- }
- else{
- return ['code'=>($color=='red' ? 1001 : 1),'msg'=> $v['comment_content'] .' '.$des ];
- }
- }
- $key = $GLOBALS['config']['app']['cache_flag']. '_'.'collect_break_comment';
- if(ENTRANCE=='api'){
- Cache::rm($key);
- if ($data['page']['page'] < $data['page']['pagecount']) {
- $param['page'] = intval($data['page']['page']) + 1;
- $res = $this->role($param);
- if($res['code']>1){
- return $this->error($res['msg']);
- }
- $this->actor_data($param,$res );
- }
- mac_echo(lang('model/collect/is_over'));
- die;
- }
- if(empty($GLOBALS['config']['app']['collect_timespan'])){
- $GLOBALS['config']['app']['collect_timespan'] = 3;
- }
- if($show==1) {
- if ($param['ac'] == 'cjsel') {
- Cache::rm($key);
- mac_echo(lang('model/collect/is_over'));
- unset($param['ids']);
- $param['ac'] = 'list';
- $url = url('api') . '?' . http_build_query($param);
- $ref = $_SERVER["HTTP_REFERER"];
- if(!empty($ref)){
- $url = $ref;
- }
- mac_jump($url, $GLOBALS['config']['app']['collect_timespan']);
- } else {
- if ($data['page']['page'] >= $data['page']['pagecount']) {
- Cache::rm($key);
- mac_echo(lang('model/collect/is_over'));
- unset($param['page']);
- $param['ac'] = 'list';
- $url = url('api') . '?' . http_build_query($param);
- mac_jump($url, $GLOBALS['config']['app']['collect_timespan']);
- } else {
- $param['page'] = intval($data['page']['page']) + 1;
- $url = url('api') . '?' . http_build_query($param);
- mac_jump($url, $GLOBALS['config']['app']['collect_timespan']);
- }
- }
- }
- }
- /**
- * 检查url合法性
- * https://github.com/magicblack/maccms10/issues/763
- */
- private function checkCjUrl($url)
- {
- $result = parse_url($url);
- if (empty($result['host']) || in_array($result['host'], ['127.0.0.1', 'localhost'])) {
- return ['code' => 1001, 'msg' => lang('model/collect/cjurl_err') . ': ' . $url];
- }
- return ['code' => 1];
- }
- public function manga_xml($param,$html='')
- {
- $url_param = [];
- $url_param['ac'] = $param['ac'];
- $url_param['t'] = $param['t'];
- $url_param['pg'] = is_numeric($param['page']) ? $param['page'] : '';
- $url_param['h'] = $param['h'];
- $url_param['ids'] = $param['ids'];
- $url_param['wd'] = $param['wd'];
- if(empty($param['h']) && !empty($param['rday'])){
- $url_param['h'] = $param['rday'];
- }
- if($param['ac']!='list'){
- $url_param['ac'] = 'mangalist';
- }
- $url = $param['cjurl'];
- if(strpos($url,'?')===false){
- $url .='?';
- }
- else{
- $url .='&';
- }
- $url .= http_build_query($url_param). base64_decode($param['param']);
- $result = $this->checkCjUrl($url);
- if ($result['code'] > 1) {
- return $result;
- }
- $html = mac_curl_get($url);
- if(empty($html)){
- return ['code'=>1001, 'msg'=>lang('model/collect/get_html_err') . ', url: ' . $url];
- }
- $html = mac_filter_tags($html);
- $xml = @simplexml_load_string($html);
- if(empty($xml)){
- $labelRule = '<pic>'."(.*?)".'</pic>';
- $labelRule = mac_buildregx($labelRule,"is");
- preg_match_all($labelRule,$html,$tmparr);
- $ec=false;
- foreach($tmparr[1] as $tt){
- if(strpos($tt,'[CDATA')===false){
- $ec=true;
- $ne = '<pic>'.'<![CDATA['.$tt .']]>'.'</pic>';
- $html = str_replace('<pic>'.$tt.'</pic>',$ne,$html);
- }
- }
- if($ec) {
- $xml = @simplexml_load_string($html);
- }
- if(empty($xml)) {
- return ['code' => 1002, 'msg'=>lang('model/collect/xml_err')];
- }
- }
- $array_page = [];
- $array_page['page'] = (string)$xml->list->attributes()->page;
- $array_page['pagecount'] = (string)$xml->list->attributes()->pagecount;
- $array_page['pagesize'] = (string)$xml->list->attributes()->pagesize;
- $array_page['recordcount'] = (string)$xml->list->attributes()->recordcount;
- $array_page['url'] = $url;
- $type_list = model('Type')->getCache('type_list');
- $bind_list = config('bind');
- $key = 0;
- $array_data = [];
- foreach($xml->list->manga as $manga){
- $bind_key = $param['cjflag'] .'_'.(string)$manga->tid;
- if($bind_list[$bind_key] >0){
- $array_data[$key]['type_id'] = $bind_list[$bind_key];
- }
- else{
- $array_data[$key]['type_id'] = 0;
- }
- $array_data[$key]['manga_id'] = (string)$manga->id;
- $array_data[$key]['manga_name'] = (string)$manga->name;
- $array_data[$key]['manga_sub'] = (string)$manga->sub;
- $array_data[$key]['manga_remarks'] = (string)$manga->remarks;
- $array_data[$key]['type_name'] = (string)$manga->type;
- $array_data[$key]['manga_pic'] = (string)$manga->pic;
- $array_data[$key]['manga_lang'] = (string)$manga->lang;
- $array_data[$key]['manga_area'] = (string)$manga->area;
- $array_data[$key]['manga_year'] = (string)$manga->year;
- $array_data[$key]['manga_serial'] = (string)$manga->serial;
- $array_data[$key]['manga_author'] = (string)$manga->author;
- $array_data[$key]['manga_artist'] = (string)$manga->artist;
- $array_data[$key]['manga_content'] = (string)$manga->content;
- $array_data[$key]['manga_status'] = 1;
- $array_data[$key]['manga_time'] = (string)$manga->last;
- $array_data[$key]['manga_total'] = 0;
- $array_data[$key]['manga_isend'] = 1;
- if($array_data[$key]['manga_serial']){
- $array_data[$key]['manga_isend'] = 0;
- }
-
- // 格式化章節
- $array_from = [];
- $array_url = [];
- $array_server=[];
- $array_note=[];
- if(isset($manga->dl->dd) && count($manga->dl->dd)){
- for($i=0; $i<count($manga->dl->dd); $i++){
- $array_from[$i] = (string)$manga->dl->dd[$i]['flag'];
- $urls = explode('#', $this->vod_xml_replace((string)$manga->dl->dd[$i]));
- $sorted_urls = $this->sortPlayUrls($urls);
- $array_url[$i] = implode('#', $sorted_urls);
- $array_server[$i] = 'no';
- $array_note[$i] = '';
- }
- }else{
- $array_from[]=(string)$manga->dt;
- $array_url[] ='';
- $array_server[]='';
- $array_note[]='';
- }
- $array_data[$key]['manga_play_from'] = implode('$$$', $array_from);
- $array_data[$key]['manga_play_url'] = implode('$$$', $array_url);
- $array_data[$key]['manga_play_server'] = implode('$$$', $array_server);
- $array_data[$key]['manga_play_note'] = implode('$$$', $array_note);
- $key++;
- }
- $array_type = [];
- $key=0;
- //分类列表
- if($param['ac'] == 'list'){
- foreach($xml->class->ty as $ty){
- $array_type[$key]['type_id'] = (string)$ty->attributes()->id;
- $array_type[$key]['type_name'] = (string)$ty;
- $key++;
- }
- }
- $res = ['code'=>1, 'msg'=>'xml', 'page'=>$array_page, 'type'=>$array_type, 'data'=>$array_data ];
- return $res;
- }
- public function manga_data($param,$data,$show=1)
- {
- if($show==1) {
- mac_echo('[' . __FUNCTION__ . '] ' . lang('model/collect/data_tip1', [$data['page']['page'],$data['page']['pagecount'],$data['page']['url']]));
- }
- $config = config('maccms.collect');
- $config = $config['manga'];
- $config_sync_pic = $param['sync_pic_opt'] > 0 ? $param['sync_pic_opt'] : $config['pic'];
- $type_list = model('Type')->getCache('type_list');
- $filter_arr = explode(',',$config['filter']);
- $filter_arr = array_filter($filter_arr);
-
- foreach($data['data'] as $k=>$v){
- $color='red';
- $des='';
- $msg='';
- $tmp='';
- if ($v['type_id'] ==0) {
- $des = lang('model/collect/type_err');
- } elseif (empty($v['manga_name'])) {
- $des = lang('model/collect/name_err');
- } elseif (mac_array_filter($filter_arr,$v['manga_name']) !==false) {
- $des = lang('model/collect/name_in_filter_err');
- } else {
- unset($v['manga_id']);
- foreach($v as $k2=>$v2){
- if(strpos($k2,'_content')===false) {
- $v[$k2] = strip_tags($v2);
- }
- }
- $v['type_id_1'] = intval($type_list[$v['type_id']]['type_pid']);
- $v['manga_en'] = Pinyin::get($v['manga_name']);
- $v['manga_letter'] = strtoupper(substr($v['manga_en'],0,1));
- $v['manga_time_add'] = time();
- $v['manga_time'] = time();
- $v['manga_status'] = intval($config['status']);
-
- $where = [];
- $where['manga_name'] = $v['manga_name'];
- if (strpos($config['inrule'], 'b')!==false) {
- $where['type_id'] = $v['type_id'];
- }
- $info = model('Manga')->where($where)->find();
- if (!$info) {
- $tmp = $this->syncImages($config_sync_pic, $v['manga_pic'],'manga');
- $v['manga_pic'] = (string)$tmp['pic'];
- $msg = $tmp['msg'];
-
- $v['manga_chapter_from'] = $v['manga_play_from'];
- $v['manga_chapter_url'] = $v['manga_play_url'];
-
- $res = model('Manga')->insert($v);
- if($res===false){
- }
- $color ='green';
- $des= lang('model/collect/add_ok');
- }
- else{
- if(empty($config['uprule'])){
- $des = lang('model/collect/uprule_empty');
- }
- elseif ($info['manga_lock'] == 1) {
- $des = lang('model/collect/data_lock');
- }
- else {
- $update = [];
- $ec=false;
- if (strpos(',' . $config['uprule'], 'a')!==false && !empty($v['manga_play_from'])) {
- $old_play_from = $info['manga_chapter_from'];
- $old_play_url = $info['manga_chapter_url'];
-
- $cj_play_from_arr = explode('$$$',$v['manga_play_from'] );
- $cj_play_url_arr = explode('$$$',$v['manga_play_url']);
- foreach ($cj_play_from_arr as $k2 => $v2) {
- $cj_play_from = $v2;
- $cj_play_url = $cj_play_url_arr[$k2];
- if (strpos('$$$'.$info['manga_chapter_from'].'$$$', '$$$'.$cj_play_from.'$$$') === false) {
- if(!empty($old_play_from)){
- $old_play_url .="$$$";
- $old_play_from .= "$$$" ;
- }
- $old_play_url .= "" . $cj_play_url;
- $old_play_from .= "" . $cj_play_from;
- $ec=true;
- }
- }
- if($ec) {
- $update['manga_chapter_from'] = $old_play_from;
- $update['manga_chapter_url'] = $old_play_url;
- }
- }
- if(count($update)>0){
- $update['manga_time'] = time();
- $where = [];
- $where['manga_id'] = $info['manga_id'];
- $res = model('Manga')->where($where)->update($update);
- $color = 'green';
- }
- else{
- $des = lang('model/collect/not_need_update');
- }
- }
- }
- }
- if($show==1) {
- mac_echo( ($k + 1) .'、'. $v['manga_name'] . " <font color='{$color}'>" .$des .'</font>'. $msg.'' );
- }
- else{
- return ['code'=>($color=='red' ? 1001 : 1),'msg'=>$des ];
- }
- }
- $key = $GLOBALS['config']['app']['cache_flag']. '_'.'collect_break_manga';
- if(ENTRANCE=='api'){
- Cache::rm($key);
- if ($data['page']['page'] < $data['page']['pagecount']) {
- $param['page'] = intval($data['page']['page']) + 1;
- $res = $this->manga($param);
- if($res['code']>1){
- return $this->error($res['msg']);
- }
- $this->manga_data($param,$res );
- }
- mac_echo(lang('model/collect/is_over'));
- die;
- }
- if(empty($GLOBALS['config']['app']['collect_timespan'])){
- $GLOBALS['config']['app']['collect_timespan'] = 3;
- }
- if($show==1) {
- if ($param['ac'] == 'cjsel') {
- Cache::rm($key);
- mac_echo(lang('model/collect/is_over'));
- unset($param['ids']);
- $param['ac'] = 'list';
- $url = url('api') . '?' . http_build_query($param);
- $ref = $_SERVER["HTTP_REFERER"];
- if(!empty($ref)){
- $url = $ref;
- }
- mac_jump($url, $GLOBALS['config']['app']['collect_timespan']);
- } else {
- if ($data['page']['page'] >= $data['page']['pagecount']) {
- Cache::rm($key);
- mac_echo(lang('model/collect/is_over'));
- unset($param['page'],$param['ids']);
- $param['ac'] = 'list';
- $url = url('api') . '?' . http_build_query($param);
- mac_jump($url, $GLOBALS['config']['app']['collect_timespan']);
- } else {
- $param['page'] = intval($data['page']['page']) + 1;
- $url = url('api') . '?' . http_build_query($param);
- mac_jump($url, $GLOBALS['config']['app']['collect_timespan'] );
- }
- }
- }
- }
- }
|