utils.class.php 86 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809
  1. <?php
  2. if (!defined('IN_ONLINE')) {
  3. exit('Access Denied');
  4. }
  5. /**
  6. * Description of utilsclass
  7. *
  8. * @author Administrator
  9. */
  10. class utils {
  11. public static function checkPassword($password,$rule="",$user_login="") {
  12. $str ="";
  13. if (!empty($rule)) {
  14. //是否校验大小写
  15. if (!empty($rule["hasOneUpperChar"])&&$rule["hasOneUpperChar"]) {
  16. if (!preg_match('/[A-Z]/',$password)) {
  17. $str ="Password must contain uppercase letters";
  18. }
  19. }
  20. //是否校验小写
  21. if (!empty($rule["hasOneLowerChar"])&&$rule["hasOneLowerChar"]) {
  22. if (!preg_match('/[a-z]/',$password)) {
  23. $str ="Password must contain lowercase letters";
  24. }
  25. }
  26. //是否存在数字
  27. if (!empty($rule["hasOneNumberChar"])&&$rule["hasOneNumberChar"]) {
  28. if (!preg_match('/[0-9]/',$password)) {
  29. $str ="Password must contain numbers";
  30. }
  31. }
  32. $sql = "select user_type from ra_online_user_roles_rel where upper(user_login)=upper('".$user_login."') and exists(select count(0) from ra_online_user where upper(user_login)=upper('".$user_login."') and is_desktop=true) order by id desc limit 1;";
  33. $user_type = common::excuteOneSql($sql);
  34. if (!empty($user_type)&&$user_type=="Super User") {
  35. if (strlen($password)<$rule["SuperMinLen"]||strlen($password)>$rule["SuperMaxLen"]) {
  36. $str ="Super user password length between ".$rule["SuperMinLen"]." and ".$rule["SuperMaxLen"];
  37. }
  38. }else{
  39. //校验密码长度
  40. if (strlen($password)<$rule["MinLen"]||strlen($password)>$rule["MaxLen"]) {
  41. $str ="Password length between ".$rule["MinLen"]." and ".$rule["MaxLen"];
  42. }
  43. }
  44. return $str;
  45. }else{
  46. if (preg_match('/^\d*$/', $password) || preg_match('/^[a-zA-Z]+$/', $password)) {
  47. $str ="Must include letters and numbers";
  48. }
  49. $len = strlen($password);
  50. $t = substr($password, 0, 1);
  51. for ($i = 1; $i < $len; $i++) {
  52. $t1 = substr($password, $i, 1);
  53. if ($t != $t1) {
  54. return "";
  55. }
  56. }
  57. return "error";
  58. }
  59. }
  60. //隐藏邮箱地址
  61. public static function maskEmail($email) {
  62. $idex = strlen($email) - strrpos($email, ".");
  63. $mask = substr($email, 0, 1) . str_repeat('*', 6) . "@" . str_repeat('*', 3) . substr($email, -$idex);
  64. return $mask;
  65. }
  66. public static function getInSql($str, $not = false, $sep = ";") {
  67. $str = trim($str);
  68. $str = trim($str, $sep);
  69. $str = trim($str);
  70. if (empty($str) && $str !== "0" && $str !== 0)
  71. return "in ('') and 1<>1";
  72. $str = strtolower($str);
  73. if (utils::checkExist($str, $sep)) {
  74. $aa = explode($sep, $str);
  75. $msg = "";
  76. foreach ($aa as $value) {
  77. $value = trim($value);
  78. if (empty($value))
  79. continue;
  80. if (empty($msg))
  81. $msg = "'" . common::check_input($value) . "'";
  82. else
  83. $msg .= ",'" . common::check_input($value) . "'";
  84. }
  85. if ($not !== FALSE)
  86. return " not in (" . $msg . ")";
  87. else
  88. return " in (" . $msg . ")";
  89. } else {
  90. if ($not !== FALSE)
  91. return " != '" . common::check_input(trim($str)) . "'";
  92. else
  93. return " = '" . common::check_input(trim($str)) . "'";
  94. }
  95. }
  96. public static function checkExist($string, $search, $u = TRUE) {
  97. if ($u === TRUE) {
  98. if (stripos($string, $search) !== false)
  99. return TRUE;
  100. }else {
  101. if (strpos($string, $search) !== false)
  102. return TRUE;
  103. }
  104. return FALSE;
  105. }
  106. public static function endWith($string, $end, $u = TRUE) {
  107. if ($u === TRUE) {
  108. $string = strtolower($string);
  109. $end = strtolower($end);
  110. return strrchr($string, $end) == $end;
  111. }
  112. return strrchr($string, $end) == $end;
  113. }
  114. public static function _get($str) {
  115. $rs = isset($_POST[$str]) ? $_POST[$str] : null;
  116. if (empty($rs))
  117. $rs = isset($_GET[$str]) ? $_GET[$str] : null;
  118. return $rs;
  119. }
  120. public static function startWith($string, $start, $u = TRUE) {
  121. if ($u === TRUE)
  122. return stripos($string, $start) === 0;
  123. return strpos($string, $start) === 0;
  124. }
  125. public static function outDisplay($content, $is_time = 'f', $is_first = 'f', $is_boolean = 'f', $excel_export = FALSE) {
  126. if (empty($content) && $content !== 0 && $content !== "0")
  127. return "";
  128. if (strtolower($is_time) == 't')
  129. return utils::dealTimeDisplay($content);
  130. if (strtolower($is_first) == 't') {
  131. if ($excel_export !== FALSE)
  132. return utils::getCompanyName($content);
  133. else
  134. return '<span title="' . $content . '">' . utils::getCompanyName($content) . '</span>';
  135. }
  136. if (strtolower($is_boolean) == 't')
  137. return utils::outTrue($content);
  138. return nl2br($content);
  139. }
  140. public static function _output($value) {
  141. if (empty($value))
  142. return "&nbsp;";
  143. else
  144. return $value;
  145. }
  146. public static function dealTimeDisplay($date) {
  147. if (empty($date))
  148. return "";
  149. if (strlen($date) > 10)
  150. return date("m/d/Y H:i:s", strtotime($date));
  151. return date("m/d/Y", strtotime($date));
  152. }
  153. public static function outDisplayForMerge($frist,$last,$split = "/") {
  154. if($frist == $last){
  155. return $frist;
  156. }
  157. if (!empty($frist)){
  158. if(!empty($last)){
  159. return $frist.$split.$last;
  160. }else{
  161. return $frist;
  162. }
  163. }else{
  164. return $last;
  165. }
  166. }
  167. public static function outTrue($r) {
  168. if (empty($r))
  169. return "No";
  170. $r = strtolower($r);
  171. if ($r == "t")
  172. return "Yes";
  173. elseif ($r == "f")
  174. return "No";
  175. else
  176. return $r;
  177. }
  178. public static function getCompanyName($detail) {
  179. $detail = nl2br($detail);
  180. if (strpos($detail, '<br />') === FALSE)
  181. return $detail;
  182. return substr($detail, 0, strpos($detail, '<br />'));
  183. }
  184. public static function getEmail($serial_no) {
  185. $ocean = common::excuteObjectSql("select sales_rep, last_user, created_by, order_from, h_bol, consignee, dest_op, agent from public.kln_ocean where md5(serial_no)=md5('$serial_no') "
  186. . "order by schem_not_display nulls last limit 1");
  187. $schema = $ocean["order_from"] . ".";
  188. $dest_op_from_agent = common::excuteOneSql("select dest_op_from_agent from " . $schema . "ocean where md5(serial_no)=md5('$serial_no')");
  189. if ($ocean["agent"] == "KYMTL" || $ocean["agent"] == "KYYYZ") {
  190. $email = array();
  191. $email["email"] = "";
  192. if (!empty($dest_op_from_agent)) {
  193. $so_email = common::excuteOneSql("select email from " . $schema . "employee where employee_id='" . $dest_op_from_agent . "' and active=true");
  194. }
  195. if (!empty($so_email)) {
  196. if (empty($email["email"])) {
  197. $email["email"] = $so_email;
  198. } else {
  199. $email["email"] .= ";" . $so_email;
  200. }
  201. }
  202. if (!empty($ocean["sales_rep"])) {
  203. $rep_email = common::excuteOneSql("select email from " . $schema . "employee where lower(salesopcode)='" . strtolower($ocean["sales_rep"]) . "' and active=true");
  204. if (!empty($rep_email)) {
  205. if (empty($email["email"])) {
  206. $email["email"] = $rep_email;
  207. } else {
  208. $email["email"] .= ";" . $rep_email;
  209. }
  210. }
  211. }
  212. } else {
  213. $email = common::excuteObjectSql("select string_agg(e.email, ';') as email, string_agg(e.first_name, ';') as name from " . $schema . "ra_online_user u, " . $schema . "employee e WHERE u.employee_id = e.employee_id and "
  214. . "lower(u.user_login) in ('" . strtolower($ocean["created_by"]) . "', '" . strtolower($ocean["last_user"]) . "')");
  215. if (empty($dest_op_from_agent)) {
  216. if (!empty($ocean["dest_op"])) {
  217. $so_email = common::excuteOneSql("select email from " . $schema . "employee where employee_id='" . $ocean["dest_op"] . "' and active=true");
  218. }
  219. } else {
  220. $so_email = common::excuteOneSql("select email from " . $schema . "employee where employee_id='" . $dest_op_from_agent . "' and active=true");
  221. }
  222. if (empty($so_email)) {
  223. if ($ocean["agent"] == "APEXSFO") {
  224. $so_email = "oid2@apexshipping.com";
  225. }
  226. if ($ocean["agent"] == "APEXLAX") {
  227. $so_email = "laxoid@apexshipping.com";
  228. }
  229. if ($ocean["agent"] == "APEXNYC") {
  230. $so_email = "NYCOID@APEXSHIPPING.COM";
  231. }
  232. if ($ocean["agent"] == "APEXPNW") {
  233. $so_email = "pnwoid@apexshipping.com";
  234. }
  235. if ($ocean["agent"] == "STLUTA") {
  236. $so_email = "starlinkOID@apexshipping.com ";
  237. }
  238. if ($ocean["agent"] == "APEXORD") {
  239. $so_email = "ordoid@apexshipping.com";
  240. }
  241. }
  242. if (!empty($so_email)) {
  243. if (empty($email["email"])) {
  244. $email["email"] = $so_email;
  245. } else {
  246. $email["email"] .= ";" . $so_email;
  247. }
  248. }
  249. if (!empty($ocean["sales_rep"])) {
  250. $rep_email = common::excuteOneSql("select email from " . $schema . "employee where lower(salesopcode)='" . strtolower($ocean["sales_rep"]) . "' and active=true");
  251. if (!empty($rep_email)) {
  252. if (empty($email["email"])) {
  253. $email["email"] = $rep_email;
  254. } else {
  255. $email["email"] .= ";" . $rep_email;
  256. }
  257. }
  258. }
  259. }
  260. //邮件处理,去重
  261. $array = array_filter(
  262. array_map('trim', explode(';', $email["email"])),
  263. 'strlen'
  264. );
  265. $array = array_unique($array);
  266. $email["email"] = utils::implode(';',$array);
  267. $email["h_bol"] = $ocean["h_bol"];
  268. $email["consignee"] = $ocean["consignee"];
  269. return $email;
  270. }
  271. /***
  272. * 过滤json中的某个数据
  273. * @param unknown $json
  274. * @param unknown $search
  275. * @param unknown $replace
  276. * @return mixed
  277. */
  278. public static function jsonFiltration($search,$replace,$json){
  279. //处理json中将斜杠转义问题
  280. $json = str_replace("\\/", "/", $json);
  281. return str_replace($search, $replace, $json);
  282. }
  283. /*
  284. * calculate eta destination by etd port
  285. */
  286. public static function calculate_ETA_Des($serial_no) {
  287. $sql = "SELECT m_eta as eat, mport_of_discharge as poul, place_of_delivery as pod,service from ocean where lower(serial_no) = '" . strtolower($serial_no) . "'";
  288. $rs = common::excuteObjectSql($sql);
  289. $date = "";
  290. if (!empty($rs['eat'])) {
  291. $date = utils::calculate_ETA_Dest($rs['eat'], $rs['poul'], $rs['pod'], $rs['service']);
  292. }
  293. return $date;
  294. }
  295. public static function calculate_ETA_Dest($eta, $poul, $pod, $service) {
  296. if (empty($poul) || empty($pod))
  297. return $eta;
  298. $sql = "SELECT door_days, cy_days
  299. FROM eta_dest
  300. WHERE eta_dest.state::text = ((( SELECT unlocode.state
  301. FROM ports, unlocode
  302. WHERE ports.uncode::text = unlocode.uncode::text AND ports.code::text = '" . common::check_input($pod) . "'
  303. LIMIT 1))::text) AND (','::text || eta_dest.pod::text) ~~* (('%,'::text || '" . common::check_input($poul) . "') || '%'::text)
  304. LIMIT 1";
  305. //$sql = "select door_days, cy_days from eta_dest where state = (select state from ports where code = '" . common::check_input($poul) . "' limit 1) and ','||pod ilike '%," . common::check_input($pod) . "%'";
  306. $rs = common::excuteObjectSql($sql);
  307. if (empty($rs))
  308. return $eta;
  309. if (utils::endWith($service, "cy"))
  310. return common::addDays($eta, $rs['cy_days']);
  311. else
  312. return common::addDays($eta, $rs['door_days']);
  313. }
  314. /*
  315. * password change, email alert
  316. */
  317. public static function sendEmailByPassword($username, $password, $email, $companyname='') {
  318. $sql = "select subject, ra_content as content from ra_online_email_tpl where lower(ra_type) = 'forgotpw'";
  319. $rs = common::excuteObjectSql($sql);
  320. if (!empty($rs)) {
  321. $subject = $rs['subject'];
  322. $content = $rs['content'];
  323. }
  324. if (!empty($subject) && !empty($content)) {
  325. $content = str_replace('<{username}>', $username, $content);
  326. $content = str_replace('<{password}>', $password, $content);
  327. $content = str_replace('<{companyname}>', $companyname, $content);
  328. global $db;
  329. common::excuteUpdateSql("INSERT INTO public.email_record_forgotpassword(type, title, from_email, to_email, content, insert_date,
  330. cc_email) VALUES ('forgot_password', '" . common::check_input($subject) . "', 'US.KApex.Online@kerryapex.com', '" .
  331. common::check_input($email) . "', '" . common::check_input($content) . "', now(), '');");
  332. return "success";
  333. //return Mail::sendMail($email, $subject, $content);
  334. } else
  335. return null;
  336. }
  337. /**
  338. * reset password link email sendEmailByResetPassword
  339. */
  340. public static function sendEmailByResetPassword($data, $email) {
  341. if(strtolower($data["user_type"]) == "employee"){
  342. $sql = "select subject, ra_content as content from ra_online_email_tpl where lower(ra_type) = 'ra_reset'";
  343. } else {
  344. $sql = "select subject, ra_content as content from ra_online_email_tpl where lower(ra_type) = 'kln_reset'";
  345. }
  346. $rs = common::excuteObjectSql($sql);
  347. if (!empty($rs)) {
  348. $subject = $rs['subject'];
  349. $content = $rs['content'];
  350. }
  351. if (!empty($subject) && !empty($content)) {
  352. $verifcation_code = utils::AES_128_CBC_Encrypt($data['user_login'],"USAIandy20244Q9X","0123456123456789");
  353. //http://localhost:8080/k_new_online/login?state=reset&verifcation_code=XXX
  354. $encoded = rawurlencode($verifcation_code);
  355. $link = SERVER_Vue_PAHT."login?state=reset&name=".$data['user_login']."&verifcation_code=".$encoded;
  356. $tplData = array("username"=>$data['user_login'],
  357. "creation_date"=>$data['current_time'],
  358. "link" =>$link);
  359. // 动态构建替换数组(格式:[key] => value)
  360. $replacements = [];
  361. foreach ($tplData as $key => $value) {
  362. $replacements["{{$key}}"] = $value;
  363. $replacements["{{{$key}}}"] = $value;
  364. }
  365. $content = strtr($content, $replacements);
  366. $content = common::check_input($content);
  367. common::excuteUpdateSql("INSERT INTO public.email_record_forgotpassword(type, title, from_email, to_email, content, insert_date,
  368. cc_email) VALUES ('forgot_password', '" . common::check_input($subject) . "', 'US.KApex.Online@kerryapex.com', '" .
  369. common::check_input($email) . "', '" . $content . "', now(), '');
  370. INSERT INTO public.customer_service_secret_key(secret_key, create_time) VALUES('".$verifcation_code."',now())");
  371. return "success";
  372. //return Mail::sendMail($email, $subject, $content);
  373. } else
  374. return null;
  375. }
  376. /**
  377. * reset password link email sendEmailByResetPassword
  378. */
  379. public static function sendEmailWithPasswordUpdate($user_login, $user_type) {
  380. if (strtolower($user_type) == "employee"){
  381. $sql = "select subject, ra_content as content from ra_online_email_tpl where lower(ra_type) = 'ra_passwordchange'";
  382. } else {
  383. $sql = "select subject, ra_content as content from ra_online_email_tpl where lower(ra_type) = 'kln_passwordchange'";
  384. }
  385. $rs = common::excuteObjectSql($sql);
  386. if (!empty($rs)) {
  387. $subject = $rs['subject'];
  388. $content = $rs['content'];
  389. }
  390. if (!empty($subject) && !empty($content)) {
  391. if(strtolower($user_type) == "employee"){
  392. $sql = "SELECT lower(ra_name) as ra_name, ra_value from ra_online_config where lower(ra_name) in ('employee_password_change_cycle')";
  393. } else {
  394. $sql = "SELECT lower(ra_name) as ra_name, ra_value from ra_online_config where lower(ra_name) in ('customer_password_change_cycle')";
  395. }
  396. $PASSWORD_CHANGE_CYCLE = 0;
  397. $rs1s = common::excuteListSql($sql);
  398. foreach ($rs1s as $rs1) {
  399. $PASSWORD_CHANGE_CYCLE = $rs1['ra_value'];
  400. }
  401. $dateInfo = common::excuteObjectSql("select
  402. to_char(now(), 'Mon-DD-YYYY') as current_date,
  403. to_char(now(), 'Mon-DD-YYYY HH24:MI:SS') as current_time,
  404. to_char((current_date + INTERVAL '".$PASSWORD_CHANGE_CYCLE." days'),'Mon-DD-YYYY') as expiry_date ;");
  405. $tplData = array("username"=>$user_login,
  406. "creation_date"=>$dateInfo['current_time'],
  407. "update_date"=>$dateInfo['current_date'],
  408. "expiry_date"=>$dateInfo['expiry_date']);
  409. // 动态构建替换数组(格式:[key] => value)
  410. $replacements = [];
  411. foreach ($tplData as $key => $value) {
  412. $replacements["{{$key}}"] = $value;
  413. $replacements["{{{$key}}}"] = $value;
  414. }
  415. $content = strtr($content, $replacements);
  416. $content = common::check_input($content);
  417. $email = _getLoginEamil();
  418. $sql = "INSERT INTO email_record(type, title, from_email, to_email, content, insert_date, cc_email, attachment_path)
  419. VALUES ('kln_passwordChange', '" . common::check_input($subject) . "', 'US.KApex.Online@kerryapex.com', '" .
  420. common::check_input($email) . "', '" . common::check_input($content) . "', now(), '', '');";
  421. common::excuteUpdateSql($sql);
  422. return "success";
  423. } else
  424. return null;
  425. }
  426. public static function operation_log_records(){
  427. //排除opreation_log操作
  428. if( empty($_REQUEST["operate"])
  429. || ($_REQUEST["action"] == "login" && $_REQUEST["operate"] == "verifcation_code")
  430. || ($_REQUEST["action"] == "login" && $_REQUEST["operate"] == "check_uname")
  431. || ($_REQUEST["action"] == "ocean_order" && $_REQUEST["operate"] == "setting_ocean_order_display")
  432. || ($_REQUEST["action"] == "ocean_booking" && $_REQUEST["operate"] == "setting_display")
  433. //opreation_log 过滤非下载的所有请求
  434. || ($_REQUEST["action"] == "opreation_log" && $_REQUEST["operate"] != "excel")
  435. //monitoring_setting 过滤非查询和保存的所有请求
  436. || ($_REQUEST["action"] == "monitoring_setting"
  437. && !($_REQUEST["operate"] == "monitoring_rules_init" || $_REQUEST["operate"] == "monitoring_rules_do"))
  438. //notifications_rules 过滤以下和登录自动轮播和五分钟有消息提醒
  439. || ($_REQUEST["action"] == "notifications_rules"
  440. && ($_REQUEST["operate"] == "check_notifications_message"
  441. || $_REQUEST["operate"] == "notifications_see_all"
  442. || ($_REQUEST["operate"] == "notifications_init" && $_REQUEST['info_type'] == 'true')
  443. || ($_REQUEST["operate"] == "notifications_init" && !empty($_REQUEST['current_time']))))
  444. ){
  445. return;
  446. }
  447. //排除robot的相关的记录
  448. if((stripos($_REQUEST["action"], "robot") === 0)){
  449. return;
  450. }
  451. if($_REQUEST["action"] == "login" && $_REQUEST["operate"] == "tracking_checked"){
  452. //public tracking_checked 的user name 记录对应IP 地址
  453. $user_type = "Customer";
  454. $user_name = common::ip();
  455. } elseif($_REQUEST["action"] == "login" && $_REQUEST["operate"] == "do_login"){
  456. //移除do_login 因为在登录的过程中,是没有用户信息的
  457. $user_name = $_REQUEST["uname"];
  458. } else{
  459. $user_name = _getLoginName();
  460. }
  461. $user_type = _isApexLogin() ? "Employee" : "Customer";
  462. //如果在没有登录前,没有登录信息,指定用户
  463. if(!isset($_SESSION['ONLINE_USER'])){
  464. $user_type = common::excuteOneSql("select user_type from public.ra_online_user u where lower(user_login) = '" . strtolower($user_name) . "'");
  465. }
  466. $operateInfo = utils::getPageByAction($_REQUEST["action"],$_REQUEST["operate"]);
  467. $page = $operateInfo["page"];
  468. $operation = $operateInfo["operate"];
  469. $operation_detail = utils::analyzeOperationDetail($_REQUEST["action"],$_REQUEST["operate"]);
  470. if(empty($operation_detail)){
  471. $operation_detail = common::check_input(utils::jsonFiltration("null", "\"\"", json_encode($_REQUEST)));
  472. }
  473. //过滤一分钟以内,相同用户的重复请求
  474. $exist_sql = "select count(1) from public.customer_service_operation_log
  475. where user_name = '$user_name'
  476. and page = '$page' and operation = '$operation' and operation_detail = '$operation_detail'
  477. and operation_time > NOW() - INTERVAL '1 minute' limit 1;";
  478. $exist_obj = common::excuteOneSql($exist_sql);
  479. if(empty($exist_obj)){
  480. $sql = "INSERT INTO public.customer_service_operation_log(user_type, user_name, page, operation, operation_detail,
  481. operation_time)
  482. VALUES ('$user_type', '$user_name', '$page', '$operation', '$operation_detail', now())";
  483. common::excuteUpdateSql($sql);
  484. }
  485. }
  486. public static function getPageByAction($action,$operate){
  487. //取消
  488. $operationConvertName = array(
  489. "login=do_login" => array("page" =>"Login","operate"=>"Login"),
  490. "login=forgot_password" => array("page" =>"Login","operate"=>"Forgot_PPassword"),
  491. "login=logout" => array("page" =>"logout","operate"=>"logout"),
  492. "login=update_pwd_expires" => array("page" =>"Login","operate"=>"Reset password"),
  493. "ocean_booking=search" => array("page" =>"Booking","operate"=>"Search"),
  494. "Booking_Search=save_setting_display" => array("page" =>"Booking","operate"=>"Customize Coulumns"),
  495. "booking=autody" => array("page" =>"Booking","operate"=>"More Filter"),
  496. "booking=autoport" => array("page" =>"Booking","operate"=>"More Filter"),
  497. "ocean_booking=detail" => array("page" =>"Booking","operate"=>"Open Detailed Page"),
  498. "ocean_booking=excel" => array("page" =>"Booking","operate"=>"Download"),
  499. "ocean_booking=save_communication" => array("page" =>"Booking","operate"=>"Send Email"),
  500. "opreation_log=search" => array("page" =>"Opreation_log","operate"=>"Search"),
  501. "login=tracking_checked" => array("page" =>"Tracking","operate"=>"Public tracking"),
  502. "ocean_order=search" => array("page" =>"Tracking","operate"=>"Search"),
  503. "Ocean_Search=save_setting_display" => array("page" =>"Tracking","operate"=>"Customize Coulumns"),
  504. "tracking=autody" => array("page" =>"Tracking","operate"=>"More Filter"),
  505. "tracking=autoport" => array("page" =>"Tracking","operate"=>"More Filter"),
  506. "ocean_order=detail" => array("page" =>"Tracking","operate"=>"Open Detailed Page"),
  507. "ocean_order=excel" => array("page" =>"Tracking","operate"=>"Download"),
  508. "ocean_order=download" => array("page" =>"Tracking","operate"=>"Download"),
  509. "ocean_order=save_communication" => array("page" =>"Booking","operate"=>"Send Email"),
  510. "ocean_order=ams_isf_log" => array("page" =>"Tracking","operate"=>"AMS/ISF"),
  511. "ocean_order=ocean_vgm" => array("page" =>"Tracking","operate"=>"Enter VGM"),
  512. "ocean_order=save_ocean_vgm" => array("page" =>"Tracking","operate"=>"Save VGM"),
  513. "ocean_order=share_shipment" => array("page" =>"Tracking","operate"=>"Share shipment"),
  514. "ocean_order=document_upload" => array("page" =>"Tracking","operate"=>"document_upload"),
  515. "ocean_order=document_upload_do" => array("page" =>"Tracking","operate"=>"document_upload_do"),
  516. "opreation_log=excel" => array("page" =>"Opreation_Log","operate"=>"Download"),
  517. "ocean_order=default_vgm" => array("page" =>"Tracking","operate"=>"Enter Default VGM Settings"),
  518. "ocean_order=default_vgm_update" => array("page" =>"Tracking","operate"=>"Save Default VGM Settings"),
  519. "notifications_rules=notifications_init" => array("page" =>"Top Section","operate"=>"Save Notifiation bell"),
  520. "notifications_rules=notifications_read" => array("page" =>"Top Section","operate"=>"Read Message"),
  521. "notifications_rules=notifications_message_init" => array("page" =>"System_Message","operate"=>"Enter Page"),
  522. "system_setting=subscribe_shipment" => array("page" =>"Dashboard/Tracking","operate"=>"Subscribe Shipment"),
  523. "system_setting=personal_profile_save" => array("page" =>"System_Setting","operate"=>"Personal Profile"),
  524. "system_setting=subscribe_notification_init" => array("page" =>"System_Setting","operate"=>"Subscribe_Notification"),
  525. "system_setting=subscribe_notification_event_update" => array("page" =>"System_Setting","operate"=>"Subscribe_Notification"),
  526. "monitoring_setting=monitoring_rules_search" => array("page" =>"System_Setting","operate"=>"Monitoring_Setting"),
  527. "monitoring_setting=monitoring_rules_do" => array("page" =>"System_Setting","operate"=>"Monitoring_Setting"),
  528. "tools=mark_save" => array("page" =>"Tools","operate"=>"Mark_Save"),
  529. "password=" => array("page" =>"Profile","operate"=>"Change password"));
  530. if($action == "ajax" && $operate == "save_setting_display"){
  531. $model_name = $_REQUEST['model_name'];
  532. return $operationConvertName[$model_name."=".$operate];
  533. }
  534. if($action == "ajax" && ($operate == "autody" || $operate == "autoport")){
  535. $model_name = $_REQUEST['search_mode'];
  536. return $operationConvertName[$model_name."=".$operate];
  537. }
  538. return $operationConvertName[$action."=".$operate];
  539. }
  540. /**
  541. * 这里是配置需要自定义的 operation Details
  542. */
  543. public static function analyzeOperationDetail($action,$operate){
  544. $detail = "";
  545. if($action == "login" && $operate == "do_login"){
  546. $detail = 'System Account';
  547. if($_REQUEST['token']){
  548. $detail = 'From Apex Online';
  549. }
  550. }
  551. if($action == "login" && $operate == "logout"){
  552. $detail = 'User Logout';
  553. }
  554. if($action == "login" && $operate == "tracking_checked"){
  555. $detail = 'Join public tracking action,Public tracking number:'.$_POST['reference_number'];
  556. }
  557. if($action == "password"){
  558. $detail = 'User Change password';
  559. }
  560. if(($action == "ocean_booking" || $action == "ocean_order") && $operate == "search"){
  561. $detail = "";
  562. //还有一个同以分钟内,不记录相同的查询 这个需要建表查询
  563. //{"action":"ocean_booking","operate":"search","_ntype":"ocean_booking","cp":"1","ps":"100","rc":"-1","other_filed":"","uname":"ra.admin","psw":"abc123456789"}
  564. $filter_common_field = array("action","operate","_ntype","cp","ps","rc","other_filed","uname","psw");
  565. foreach($_REQUEST as $selected_key => $selected){
  566. if(!utils::in_array($selected_key, $filter_common_field)){
  567. if(is_array($selected)){
  568. $selected = utils::implode(",",$selected);
  569. }
  570. $detail .="$selected_key:".$selected."; ";
  571. }
  572. }
  573. if(empty($detail)){
  574. $detail .="No search condition";
  575. }
  576. }
  577. if($action == "ajax" && $operate == "save_setting_display"){
  578. $detail = "";
  579. $type = $_REQUEST['model_name'] == "Booking_Search" ? "Booking_Search" : "Ocean_Search";
  580. //记录最终save 和 default 字段相比的结果
  581. // $default_ids = common::excuteListSql("select id,display_name from public.ra_online_search_display_cso where model_name = '$type'
  582. // and display_name in('Booking No.','MBL No.','HBL No.','Mode','Status',
  583. // 'Shipper','Consignee','Origin Agent','Destination Agent','Creation Time','ETD','ETA',
  584. // 'Voyage','Vessel','Week','Created by') order by default_order");
  585. $default_ids = common::excuteListSql("select id,display_name from public.ra_online_search_display_cso where model_name = '$type'
  586. and default_display = true order by default_order");
  587. $ids = utils::implode(";", $_POST['ids']);
  588. $save_ids = common::excuteListSql("select id,display_name from public.ra_online_search_display_cso where model_name = '$type'
  589. and id::text = any(regexp_split_to_array('$ids', ';')) order by default_order");
  590. $detele_detail = "";
  591. foreach($default_ids as $did){
  592. if(!utils::exist_array($did['id'],$save_ids)){
  593. $detele_detail .=$did['display_name']."/";
  594. }
  595. }
  596. $add_detail = "";
  597. foreach($save_ids as $sid){
  598. if(!utils::exist_array($sid['id'],$default_ids)){
  599. $add_detail .=$sid['display_name']."/";
  600. }
  601. }
  602. if(!empty($detele_detail)){
  603. $detail.="Detele fields: (".$detele_detail."). ";
  604. }
  605. if(!empty($add_detail)){
  606. $detail.="Add fields: (".$add_detail."). ";
  607. }
  608. if(empty($detail)){
  609. $detail = "The default field has not changed";
  610. }
  611. }
  612. if(($action == "ocean_booking" || $action == "ocean_order") && $operate == "detail"){
  613. $tabel = $action == "ocean_booking" ? "kln_booking" : "kln_ocean";
  614. $serial_no = common::deCode($_GET['a'], 'D');
  615. $sql = "SELECT booking_no,h_bol from public.$tabel where serial_no = '$serial_no' limit 1";
  616. $data = common::excuteObjectSql($sql);
  617. if(!empty($data['booking_no'])){
  618. $detail = 'Booking No.: '.$data['booking_no'];
  619. }else{
  620. $detail = 'HBOL: '.$data['h_bol'];
  621. }
  622. }
  623. if(($action == "ocean_booking" || $action == "ocean_order") && $operate == "save_communication"){
  624. $text = $_POST["text"];
  625. $detail = urldecode($text);
  626. }
  627. if(($action == "ocean_order") && $operate == "ams_isf_log"){
  628. $detail = "Enter AMS/ISF Page";
  629. }
  630. if(($action == "ocean_booking" || $action == "ocean_order" || $action == "opreation_log") && $operate == "excel"){
  631. $detail = "Filter_condition:" . $_REQUEST['excel_filter_condition']." Selected Fields:". $_REQUEST['selected_fields'];
  632. }
  633. //Tracking詳情頁download的file(顯示file名稱)
  634. if(($action == "ocean_order") && $operate == "download"){
  635. $filename = common::deCode($_GET['url'], 'D');
  636. $filename = str_replace("/", DIRECTORY_SEPARATOR, $filename);
  637. $filename = str_replace("\\", DIRECTORY_SEPARATOR, $filename);
  638. $display_name = basename($filename);
  639. if (!file_exists($filename)){
  640. $detail = "Tracking Detail Attachment Download But File Not Exist : $display_name";
  641. }else{
  642. $detail = "Tracking Detail Attachment Download: $display_name";
  643. }
  644. }
  645. //Tracking詳情頁Upload Files(顯示file名稱)
  646. if(($action == "ocean_order") && $operate == "document_upload"){
  647. $detail = "Enter Upload Files page";
  648. }
  649. if(($action == "notifications_rules") && $operate == "notifications_init"){
  650. $detail = "點擊頂部欄的消息鈴鐺進入";
  651. }
  652. if(($action == "system_setting") && $operate == "personal_profile_save"){
  653. if($_REQUEST['save_model'] == "no_profile"){
  654. $detail = "Save Personal Preference: ".common::check_input(utils::jsonFiltration("null", "\"\"", json_encode($_REQUEST)));
  655. }else{
  656. $detail = "Save Basic Information: ".common::check_input(utils::jsonFiltration("null", "\"\"", json_encode($_REQUEST)));
  657. }
  658. }
  659. if(($action == "system_setting") && $operate == "subscribe_notification_init"){
  660. $detail = "點擊進入這個tab頁";
  661. }
  662. if(($action == "system_setting") && $operate == "subscribe_notification_event_update"){
  663. $detail = "保存頁面操作: ".common::check_input(utils::jsonFiltration("null", "\"\"", json_encode($_REQUEST)));
  664. }
  665. if(($action == "monitoring_setting") && $operate == "monitoring_rules_search"){
  666. $detail = "點擊進入這個tab頁";
  667. }
  668. if(($action == "monitoring_setting") && $operate == "monitoring_rules_do"){
  669. $detail = "保存頁面操作: ".common::check_input(utils::jsonFiltration("null", "\"\"", json_encode($_REQUEST)));
  670. }
  671. return $detail;
  672. }
  673. public static function calculateTicks($minValue, $maxValue, $targetTickCount = 10) {
  674. $tickSpacing = ($maxValue - $minValue);
  675. $tickSpacing = intval($tickSpacing);
  676. $interval = ceil($tickSpacing / $targetTickCount);
  677. $len = strlen($interval);
  678. if ($len >1){
  679. $interval = ceil($interval/pow(10,$len-1)) *pow(10,$len-1);
  680. }
  681. return $interval;
  682. }
  683. //只记录Public tracking
  684. public static function single_operation_log_save($user_type,$user_name,$page,$operation,$operation_detail){
  685. $sql = "INSERT INTO public.customer_service_operation_log(user_type, user_name, page, operation, operation_detail,
  686. operation_time)
  687. VALUES ('$user_type', '$user_name', '$page', '$operation', '$operation_detail', now())";
  688. common::excuteUpdateSql($sql);
  689. }
  690. public static function uuid() {
  691. return strtoupper(md5(uniqid("", TRUE) . mt_rand()));
  692. }
  693. public static function count($variable){
  694. if (is_array($variable)) {
  695. $count = count($variable);
  696. } else {
  697. $count = 0;
  698. }
  699. return $count;
  700. }
  701. public static function implode($sp,$variable){
  702. $variable = isset($variable) && is_array($variable) ? $variable : array();
  703. return implode($sp, $variable);
  704. }
  705. public static function in_array($str, $arr){
  706. if (is_array($arr)) {
  707. return in_array($str, $arr);
  708. } else {
  709. return false;
  710. }
  711. }
  712. public static function exist_array($key,$arr){
  713. $flag = false;
  714. foreach($arr as $v){
  715. if($v['id'] == $key ){
  716. $flag = true;
  717. }
  718. }
  719. return $flag;
  720. }
  721. public static function getConpanyForNotify($_schemas,$type){
  722. //如果有多個就留空
  723. $company = "";
  724. if($type == 'ocean'){
  725. $company = $_SESSION['ONLINE_USER']['company_name'];
  726. $company_arr = explode(";",$company);
  727. $temp = array();
  728. foreach($company_arr as $v){
  729. if(!empty($v)){
  730. $temp[] = $v;
  731. }
  732. }
  733. if(utils::count($temp) <= 1){
  734. return $company;
  735. }
  736. }
  737. if($type == 'air'){
  738. $company_id = $_SESSION['ONLINE_USER']['air_customers'];
  739. $company_id_arr = explode(";",$company_id);
  740. $temp = array();
  741. foreach($company_id_arr as $v){
  742. if(!empty($v)){
  743. $temp[] = $v;
  744. }
  745. }
  746. if(utils::count($temp) == 1){
  747. if ($_schemas == "public") {//apex ocean和air 分开
  748. $sql = "SELECT company from ocean.contacts where contact_id = '" . common::check_input($temp[0]) . "' ";
  749. } else {
  750. $sql = "SELECT company from $_schemas.contacts where contact_id = '" . common::check_input($temp[0]) . "' ";
  751. }
  752. $company = common::excuteOneSql($sql);
  753. }
  754. return $company;
  755. }
  756. }
  757. public static function getKlnDocNotifyContent($bol,$file_type,$upload_user_name,$upload_user_email,$company,$date_time){
  758. $report_setting = common::excuteObjectSql("select * from ra_online_auto_report_config where report_type = 'KLN_DOC_Notify' ");
  759. $report_content = $report_setting['report_content'];
  760. $columns = common::excuteListSql("select display_name,model_name,database_column_name,excel_width,order_by from public.ra_online_search_display_cso where model_name = 'KLN_DOC_Notify'");
  761. $missing_packing_th = "<tr>";
  762. foreach ($columns as $colk => $colvalue) {
  763. $missing_packing_th.='<td style="width:'.$colvalue['excel_width'].'pt;border:solid black 1.0pt;background:#1F4E78;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt">
  764. <p class="MsoNormal" align="left" style="text-align:left"><b><span lang="EN-US" style="font-size:8.0pt;font-family:&quot;Arial&quot;,sans-serif;color:white">'.$colvalue['display_name'].'</span></b></p>
  765. </td>';
  766. }
  767. $missing_packing_th .= "</tr>";
  768. $report_content = str_replace('<{missing_packing_th}>', $missing_packing_th, $report_content);
  769. $data = array(array("h_bol"=>$bol,"file_type"=>$file_type,"upload_by"=>$upload_user_name,"email"=>$upload_user_email,"company"=>$company,"upload_time"=>$date_time."(US/Pacific)"));
  770. $missing_packing_tr = "";
  771. foreach ($data as $rk => $rv) {
  772. $missing_packing_tr .= "<tr>";
  773. foreach ($columns as $ck => $cv) {
  774. if(utils::endWith($cv['display_name'], "email")){
  775. $missing_packing_tr.='<td style="font-size:8.0pt;font-family:&quot;Arial&quot;,sans-serif;color:black;border-top:none;
  776. border-left:none;border-bottom:solid black 1.0pt;border-right:solid black 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt">
  777. <a href="mailto:'.$rv[$cv['database_column_name']].'">'.$rv[$cv['database_column_name']].'</a>
  778. </td>';
  779. }else{
  780. $missing_packing_tr.='<td style="font-size:8.0pt;font-family:&quot;Arial&quot;,sans-serif;color:black;'
  781. . 'border-top:none;border-left:none;border-bottom:solid black 1.0pt;border-right:solid black 1.0pt;padding:0cm 5.4pt 0cm 5.4pt;height:14.25pt">'.$rv[$cv['database_column_name']].'</td>';
  782. }
  783. }
  784. $missing_packing_tr .= "</tr>";
  785. }
  786. $report_content = str_replace('<{missing_packing_tr}>', $missing_packing_tr, $report_content);
  787. return $report_content;
  788. }
  789. public static function _getSql($ids, $type,$shipment_mode,$sqlWhere) {
  790. $ids_arr = explode(',', $ids);
  791. $sql = "";
  792. if($type == "co2e_orgin"){
  793. $str = "SUM(COALESCE(carbon_emission,0)) as catnum ";
  794. $filed = "shippr_uncode";
  795. } else {
  796. $str = "SUM(COALESCE(carbon_emission,0)) as catnum ";
  797. $filed = "consignee_uncode";
  798. }
  799. $shipment_mode_where = " 1=1 ";
  800. //这里处理为空,目前没有数据
  801. $shipment_mode_where = " transport_mode_extend = '$shipment_mode' ";
  802. $shipment_mode_where .= $sqlWhere;
  803. foreach ($ids_arr as $value) {
  804. if (!empty($value)) {
  805. if (empty($sql)) {
  806. $sql .= "SELECT $str FROM public.kln_ocean where $shipment_mode_where and $filed = '$value'";
  807. } else {
  808. $sql .= " union all SELECT $str from public.kln_ocean where $shipment_mode_where and $filed = '$value'";
  809. }
  810. }
  811. }
  812. return $sql;
  813. }
  814. public static function removeDuplicateArray($array){
  815. $result = array();
  816. foreach ($array as $value) {
  817. //过滤可能的空值,会引起前端页面有数据但无法显示
  818. if(!empty($value)){
  819. if (!utils::in_array($value, $result)) {
  820. $result[] = $value;
  821. }
  822. }
  823. }
  824. return $result;
  825. }
  826. public static function hasMacros($filePath) {
  827. //在 MIME 校验之后,再加一层 ZIP 宏检测(同时查 xl/ 和 word/)
  828. $extension = pathinfo($filePath, PATHINFO_EXTENSION);
  829. if($extension == 'xls' || $extension == 'doc'){
  830. return false;
  831. }
  832. $zip = new ZipArchive();
  833. if ($zip->open($filePath) !== true) {
  834. // 无法打开为 ZIP:可能是 .xls/.doc 或损坏文件
  835. // 由于你只允许 .xlsx/.docx/.pdf,这类文件应已被 MIME 拦截
  836. return false;
  837. }
  838. // 同时检查 Excel 和 Word 的宏路径!
  839. $hasExcelMacro = $zip->locateName('xl/vbaProject.bin') !== false;
  840. $hasWordMacro = $zip->locateName('word/vbaProject.bin') !== false;
  841. $zip->close();
  842. return $hasExcelMacro || $hasWordMacro;
  843. // if ($extension === 'xlsx') {
  844. // // 检查 .xlsx 文件
  845. // $zip = new ZipArchive();
  846. // if ($zip->open($filePath) === TRUE) {
  847. // // 检查是否存在 vbaProject.bin 文件
  848. // $hasMacros = $zip->locateName('xl/vbaProject.bin') !== false;
  849. // $zip->close();
  850. // return $hasMacros;
  851. // } else {
  852. // return false; // 无法打开文件
  853. // }
  854. // }
  855. }
  856. public static function arrayKeyToInt($arr){
  857. $ret = array();
  858. foreach($arr as $key => $val){
  859. $ret[] = $val;
  860. }
  861. return $ret;
  862. }
  863. public static function getDailyAndweeklyFrist($arr){
  864. $numericRecords = count($arr);
  865. $ret = array();
  866. $numericRecords_one = 0;
  867. $numericRecords_two = 0;
  868. foreach($arr as $key => $val){
  869. if($key == 0){
  870. $val["numericRecords"] = $numericRecords;
  871. $ret = $val;
  872. }
  873. if($val["notifiation_type"] == "Departure/Arrival_Delay"){
  874. if(utils::checkExist($val["delay_name"],"Departure_Delay")){
  875. $numericRecords_one +=1;
  876. }
  877. if(utils::checkExist($val["delay_name"],"Arrival_Delay")){
  878. $numericRecords_two +=1;
  879. }
  880. }
  881. if($val["notifiation_type"] == "ETD/ETA_Change"){
  882. if(utils::checkExist($val["date_change_name"],"ETD Change")){
  883. $numericRecords_one +=1;
  884. }
  885. if(utils::checkExist($val["date_change_name"],"ETA Change")){
  886. $numericRecords_two +=1;
  887. }
  888. }
  889. }
  890. //对Delay and change 特殊处理
  891. $ret["numericRecords_one"]= $numericRecords_one;
  892. $ret["numericRecords_two"]= $numericRecords_two;
  893. return $ret;
  894. }
  895. /**
  896. * ocean ->sea
  897. */
  898. public static function converModeToDB($shipment_transport_mode_arr){
  899. $converMode = array();
  900. foreach($shipment_transport_mode_arr as $model){
  901. if (strtolower($model) == "ocean"){
  902. $converMode[] = 'sea';
  903. }else{
  904. $converMode[] = strtolower($model);
  905. }
  906. }
  907. return utils::implode(";",$converMode);
  908. }
  909. /**
  910. * sea ->ocean
  911. */
  912. public static function converModeToDisplay($shipment_transport_mode){
  913. //数据转换前端需要的
  914. $converMode = array();
  915. $shipment_transport_mode_arr = explode(";", $shipment_transport_mode);
  916. foreach($shipment_transport_mode_arr as $model){
  917. if (strtolower($model) == "sea"){
  918. $converMode[] = 'Ocean';
  919. }else{
  920. $converMode[] = ucfirst($model);
  921. }
  922. }
  923. return utils::implode(";",$converMode);
  924. }
  925. public static function compareArrayEq($array1,$array2){
  926. $array1 = empty($array1) ? array():$array1;
  927. $array2 = empty($array2) ? array():$array2;
  928. // 使用array_diff比较并重置键名
  929. $diff1 = array_diff($array1, $array2);
  930. $diff2 = array_diff($array2, $array1);
  931. // 如果结果为空,说明两个数组一样
  932. if (empty($diff1) && empty($diff2)) {
  933. return true;
  934. } else {
  935. return false;
  936. }
  937. }
  938. public static function comvertutcinfo($time_zone){
  939. if(!empty($time_zone)){
  940. if(utils::checkExist($time_zone,"+")){
  941. $time_zone = str_replace('+', '-', $time_zone);
  942. }else{
  943. $time_zone = str_replace('-', '+', $time_zone);
  944. }
  945. }
  946. return $time_zone;
  947. }
  948. public static function arrayOrderBykeys($order,$data_kd,$key){
  949. $orderedData = []; // 用于存储按$order排序后的数据
  950. foreach ($order as $name) {
  951. foreach ($data_kd as $item) {
  952. if ($item[$key] == $name) {
  953. $orderedData[] = $item; // 将找到的元素添加到新数组中
  954. break; // 找到后跳出内层循环,继续外层循环处理下一个id
  955. }
  956. }
  957. }
  958. return $orderedData;
  959. }
  960. /**
  961. * 数组去掉null
  962. */
  963. public static function arrayRemoveNull($array){
  964. foreach ($array as &$value) {
  965. if (is_null($value)) {
  966. $value = '';
  967. }
  968. }
  969. unset($value); // 断开 $value 的引用
  970. return $array;
  971. }
  972. /**
  973. * public.kln_ocean 和 WHERE 的位置关系,进行条件拼接
  974. */
  975. public static function modifyString($input,$sqlWhere) {
  976. $search = 'public.kln_ocean';
  977. $pos = strpos($input, $search);
  978. if ($pos !== false) {
  979. $afterSearch = substr($input, $pos + strlen($search));
  980. $hasWhere = (stripos($afterSearch, 'WHERE') !== false);
  981. if ($hasWhere) {
  982. // 在 WHERE 后插入 1=1
  983. $wherePos = stripos($input, 'WHERE', $pos);
  984. $insertPos = $wherePos + strlen('WHERE');
  985. $sqlWhere =' ' .$sqlWhere.' and ';
  986. return substr_replace($input, $sqlWhere, $insertPos, 0);
  987. } else {
  988. // 在 public.kln_ocean 后插入 1=1
  989. $insertPos = $pos + strlen($search);
  990. $sqlWhere =' where ' .$sqlWhere.' ';
  991. return substr_replace($input, $sqlWhere, $insertPos, 0);
  992. }
  993. }
  994. return $input;
  995. }
  996. /**
  997. * LIMIT的处理,或者超过100
  998. * 如果有limit 给最后一个limit修改
  999. * 这个处理不了 写在字段里的子查询(select 1 from aa limit 1) as aa,sql会原样返回
  1000. */
  1001. public static function processLimitClause($sql,$limit = 100) {
  1002. $is_limit = false;
  1003. // 去除前后空白
  1004. $sql = trim($sql);
  1005. // 临时保存字符串内容,防止被误匹配
  1006. $placeholder = '__SQL_STRING_PLACEHOLDER__';
  1007. $strings = [];
  1008. // 匹配字符串(包括单引号和 $$ 符号)
  1009. $pattern = "/('(?:[^']|'')*')|(\$(?:.*?)\$)/is";
  1010. // 替换所有字符串为占位符,并保存原内容
  1011. $cleanSql = preg_replace_callback($pattern, function ($match) use (&$strings, $placeholder) {
  1012. $str = $match[1] ?? $match[2];
  1013. $index = count($strings);
  1014. $strings[$index] = $str;
  1015. return $placeholder . $index;
  1016. }, $sql);
  1017. // 正则匹配所有 LIMIT 子句(支持 LIMIT n 和 LIMIT n OFFSET m)
  1018. $pattern = '/\s+LIMIT\s+\d+(\s+OFFSET\s+\d+)?/i';
  1019. preg_match_all($pattern, $cleanSql, $matches, PREG_OFFSET_CAPTURE);
  1020. if (!empty($matches[0])) {
  1021. // 获取最后一个 LIMIT 的位置和内容
  1022. $lastMatch = end($matches[0]);
  1023. $limitStr = $lastMatch[0]; // 完整的 LIMIT 子句,如 " LIMIT 50" 或 " LIMIT 200 OFFSET 10"
  1024. $pos = $lastMatch[1]; // 起始位置
  1025. // 提取 LIMIT 的数字部分
  1026. preg_match('/\d+/', $limitStr, $numMatch);
  1027. $currentLimit = intval($numMatch[0]);
  1028. if ($currentLimit < $limit) {
  1029. // 当前 LIMIT 值更小,不做修改
  1030. $is_limit = true;
  1031. }else{
  1032. // 构造新的 LIMIT 子句,保留可能存在的 OFFSET
  1033. $offsetPart = '';
  1034. if (preg_match('/(.*?)(\s+OFFSET\s+\d+)/i', $limitStr, $offsetMatches)) {
  1035. $offsetPart = $offsetMatches[2]; // 例如 " OFFSET 10"
  1036. }
  1037. $newLimitClause = " LIMIT {$limit}{$offsetPart}";
  1038. // 替换最后一个 LIMIT
  1039. $before = substr($cleanSql, 0, $pos);
  1040. $after = substr($cleanSql, $pos + strlen($limitStr));
  1041. $cleanSql = $before . $newLimitClause . $after;
  1042. }
  1043. } else {
  1044. // 没有 LIMIT,直接加上
  1045. $cleanSql .= " LIMIT {$limit}";
  1046. }
  1047. // 最后恢复原来的字符串内容
  1048. $finalSql = preg_replace_callback("/{$placeholder}(\d+)/", function ($match) use ($strings) {
  1049. return $strings[(int)$match[1]];
  1050. }, $cleanSql);
  1051. return array("sql"=>$finalSql, "is_limit"=>$is_limit);
  1052. }
  1053. /**
  1054. * 替换 single reference
  1055. */
  1056. public static function replacements($data, $template,$new_sql) {
  1057. // 动态构建替换数组(格式:[key] => value)
  1058. $replacements = [];
  1059. foreach ($data as $key => $value) {
  1060. $replacements["{{$key}}"] = $value;
  1061. $replacements["{{{$key}}}"] = $value;
  1062. }
  1063. if(empty($data)){
  1064. $fileds = common::extractSelectFields($new_sql);
  1065. foreach($fileds as $key){
  1066. //如果遇到data没数据,但是有 total_count ,则处理成0
  1067. if($key == "total_count"){
  1068. $replacements["{{$key}}"] = "0";
  1069. $replacements["{{{$key}}}"] = "0";
  1070. } else {
  1071. $replacements["{{$key}}"] = "";
  1072. $replacements["{{{$key}}}"] = "";
  1073. }
  1074. }
  1075. }
  1076. // 执行替换
  1077. error_log("replacements_single:".json_encode($replacements));
  1078. error_log("template_single:".$template);
  1079. $result = strtr($template, $replacements);
  1080. // 输出结果
  1081. return $result;
  1082. }
  1083. /**
  1084. * 替换复杂的reference
  1085. *
  1086. */
  1087. public static function replacementsMultiline($data, $template,$new_sql) {
  1088. //行中所有 {{xxx}} 模板变量都必须在 SQL 查询字段中存在
  1089. //SQL 中可以有比 reference 多的字段,不影响匹配
  1090. //一旦找到第一个符合条件的
  1091. //不依赖任何 {{#EACH ROW}} 或其他模板语法
  1092. //| {{h_bol}} | {{m_bol}} | {{transport_mode}} | {{service}} | 格式
  1093. $explode_data = utils::findFirstTemplateRow($template,$new_sql);
  1094. $explode_str = $explode_data['line'];
  1095. $replaceTemplate = "";
  1096. //检查模板 是否已经带有特定表格的序列
  1097. if(!empty($explode_str) && strpos($template, $explode_str) !== false){
  1098. $spacing = utils::getMarkDownTableSpacing($template,$explode_str);
  1099. $parts = explode($explode_str, $template,2);
  1100. // 生成所有行
  1101. $generatedRows = [];
  1102. foreach ($data as $row) {
  1103. $replacements = [];
  1104. foreach ($row as $key => $value) {
  1105. $replacements["{{{$key}}}"] = $value;
  1106. }
  1107. $generatedRows[] = strtr($explode_str, $replacements);
  1108. }
  1109. if(empty($generatedRows) && empty($data)){
  1110. $generatedRows[] = "No Data";
  1111. }
  1112. //如果 SQL字段是有多余未匹配的字段 调用一次个体替换
  1113. $mapping = $explode_data['mapping'];
  1114. if(!$mapping){
  1115. $parts[0] = utils::replacements($data[0],$parts[0],$new_sql);
  1116. $parts[1] = utils::replacements($data[0],$parts[1],$new_sql);
  1117. }
  1118. $replaceTemplate = $parts[0] . implode($spacing, $generatedRows) . $parts[1];
  1119. }else{
  1120. //全文替换 上面统一有excuteListSql 这里的结果要变一下
  1121. $replaceTemplate = utils::replacements($data[0],$template,$new_sql);
  1122. }
  1123. return $replaceTemplate;
  1124. }
  1125. // 在 reference 中查找第一个符合要求的 | ... | 行
  1126. public static function findFirstTemplateRow($reference, $sql) {
  1127. $sqlFields = common::extractSelectFields($sql);
  1128. if (empty($sqlFields)) return null;
  1129. $lines = preg_split('/\r\n|\r|\n/', $reference);
  1130. foreach ($lines as $line) {
  1131. $line = trim($line);
  1132. // 检查是否是以 | 开头和结尾的表格行
  1133. if (strpos($line, '|') !== 0 || substr($line, -1) !== '|') continue;
  1134. // 提取该行中的所有 {{xxx}} 模板变量
  1135. preg_match_all('/\{\{(\w+)\}\}/', $line, $matches);
  1136. $templateVars = $matches[1];
  1137. preg_match_all('/(?<=\|)([^|]+)(?=\|)/', $line, $matchesTwo);
  1138. // 去除每个匹配项前后的空白字符
  1139. $cells = $matchesTwo[1];
  1140. if (empty($templateVars) || count($templateVars) <> count($cells)) continue;
  1141. // 检查每个变量是否都在 SQL 字段中:这里逻辑是无效的,这里是按模板取的,sql查询有多余字段不影响,也不影响单独去渲染
  1142. foreach ($templateVars as $var) {
  1143. if (!utils::in_array(strtolower($var), array_map('strtolower', $sqlFields))) {
  1144. continue; // 跳出当前循环,继续检查下一行
  1145. }
  1146. }
  1147. $mapping = true;
  1148. //检查 SQL 字段是否有未匹配的字段
  1149. if(count($sqlFields) <> count($templateVars)){
  1150. $mapping = false;
  1151. }
  1152. // 所有变量都匹配成功,返回这一行
  1153. return array("line"=>$line,"mapping" => $mapping);
  1154. }
  1155. return array("line"=>null,"mapping" =>true);; // 没有找到匹配行
  1156. }
  1157. /**
  1158. * 替换复杂的reference 固定问题 分开
  1159. */
  1160. public static function replacementsFixedMultilineForFixed($data, $template,$explode_str) {
  1161. //| {{h_bol}} | {{m_bol}} | {{transport_mode}} | {{service}} | 格式
  1162. $replaceTemplate = "";
  1163. //检查模板 是否已经带有特定表格的序列
  1164. if(strpos($template, $explode_str) !== false){
  1165. $spacing = utils::getMarkDownTableSpacing($template,$explode_str);
  1166. $parts = explode("$explode_str", $template,2);
  1167. // 生成所有行
  1168. $generatedRows = [];
  1169. foreach ($data as $row) {
  1170. $replacements = [];
  1171. foreach ($row as $key => $value) {
  1172. $replacements["{{{$key}}}"] = $value;
  1173. }
  1174. $generatedRows[] = strtr($explode_str, $replacements);
  1175. }
  1176. $replaceTemplate = $parts[0] . implode($spacing, $generatedRows) . $parts[1];
  1177. }else{
  1178. //有异常,模板原样返回
  1179. $replaceTemplate = $template;
  1180. }
  1181. return $replaceTemplate;
  1182. }
  1183. /**
  1184. * 替换 single reference Fixed
  1185. */
  1186. public static function replacementsFixed($data, $template,$fileds) {
  1187. // 动态构建替换数组(格式:[key] => value)
  1188. $replacements = [];
  1189. foreach ($data as $key => $value) {
  1190. $replacements["{{$key}}"] = $value;
  1191. $replacements["{{{$key}}}"] = $value;
  1192. }
  1193. if(empty($data)){
  1194. foreach($fileds as $key){
  1195. $replacements["{{$key}}"] = "";
  1196. $replacements["{{{$key}}}"] = "";
  1197. }
  1198. }
  1199. // 执行替换
  1200. $result = strtr($template, $replacements);
  1201. // 输出结果
  1202. return $result;
  1203. }
  1204. public static function getMarkDownTableSpacing($str,$search){
  1205. //$str = "|--------------|\n sdsds| E1205546127 | ";
  1206. //$search = "| E1205546127 |";
  1207. // 查找搜索字符串的位置
  1208. $pos = strpos($str, $search);
  1209. if ($pos !== false) {
  1210. // 从搜索字符串前面开始向前查找 "|" 的位置
  1211. for ($i = $pos - 1; $i >= 0; $i--) {
  1212. if ($str[$i] === '|') {
  1213. // 提取两个位置之间的内容
  1214. $result = substr($str, $i + 1, $pos - $i - 1);
  1215. return $result;
  1216. }
  1217. }
  1218. } else {
  1219. return "\n";
  1220. }
  1221. }
  1222. public static function uniqueGroupbyData($unique_filed,$groups_filed,$rows){
  1223. $uniqueData = [];
  1224. $hBolSeen = [];
  1225. //需要去重
  1226. if(!empty($unique_filed)){
  1227. foreach ($rows as $row) {
  1228. $hBol = $row[$unique_filed]."_".$row[$groups_filed];
  1229. if (!isset($hBolSeen[$hBol])) {
  1230. $uniqueData[] = $row;
  1231. $hBolSeen[$hBol] = true;
  1232. }
  1233. }
  1234. } else {
  1235. //不需要去重
  1236. $uniqueData = $rows;
  1237. }
  1238. //分组计数
  1239. $dateGroups = [];
  1240. if(!empty($groups_filed)){
  1241. foreach ($uniqueData as $item) {
  1242. $date = $item[$groups_filed];
  1243. if (!isset($dateGroups[$date])) {
  1244. $dateGroups[$date] = 0;
  1245. }
  1246. $dateGroups[$date]++;
  1247. }
  1248. }
  1249. return $dateGroups;
  1250. }
  1251. public static function getDmoeSqlForAi($type){
  1252. $data= array();
  1253. $data["Show shipments delayed in the last 30 days."] = "select count(*)
  1254. from public.kln_record kr
  1255. inner join LATERAL (select h_bol from public.kln_ocean oo where oo.serial_no = kr.serial_no and <{ExtendHand_KLN}> ) m on true
  1256. where kr.log_type like '%Delay'
  1257. and kr.log_time >= CURRENT_DATE - INTERVAL '30 day'
  1258. and kr.event_date is not null and kr.event_old_date is not null
  1259. and (kr.event_date||' '||COALESCE(kr.event_time,'00:00'))::timestamp >= (kr.event_old_date||' '||COALESCE(kr.event_old_time,'00:00'))::timestamp;select oo.h_bol,oo.place_of_receipt_exp,oo.place_of_delivery_exp,oo.serial_no,oo.order_from,
  1260. kr.log_type,kr.event_old_date, kr.event_old_time,kr.event_date, kr.event_time,
  1261. (EXTRACT(DAY FROM ((event_date||' '||COALESCE(event_time,'00:00'))::timestamp - (event_old_date||' '||COALESCE(event_old_time,'00:00'))::timestamp))) as duration
  1262. from public.kln_record kr
  1263. inner join LATERAL (select h_bol, place_of_receipt_exp, place_of_delivery_exp,serial_no,order_from
  1264. from public.kln_ocean oo where oo.serial_no = kr.serial_no and <{ExtendHand_KLN}> ) oo on true
  1265. where kr.log_type like '%Delay'
  1266. and kr.log_time >= CURRENT_DATE - INTERVAL '30 day'
  1267. and kr.event_date is not null and kr.event_old_date is not null
  1268. and (kr.event_date||' '||COALESCE(kr.event_time,'00:00'))::timestamp >= (kr.event_old_date||' '||COALESCE(kr.event_old_time,'00:00'))::timestamp
  1269. order by kr.log_time desc limit 10";
  1270. $data["Shipments arriving in the next 7 days."] = "select count(*)
  1271. from (
  1272. SELECT oo.serial_no,h_bol, place_of_receipt_exp, place_of_delivery_exp,m.description,eta,order_from, o.cargo_type
  1273. FROM public.kln_ocean oo
  1274. inner join LATERAL (select case when is_hazardous = 't' then 'Dangerous Goods'::text else 'General'::text end as cargo_type
  1275. from public.ocean o where o.serial_no = oo.serial_no) o on true
  1276. left join LATERAL (select a.code,a.description
  1277. from public.ocean_milestone a
  1278. inner join public.customer_service_milestone_sno s
  1279. on a.code = s.code
  1280. and s.type = 'sea'
  1281. and a.serial_no = oo.serial_no
  1282. and a.act_date is not null
  1283. order by s.sno desc limit 1) m on true
  1284. WHERE <{ExtendHand_KLN}> and oo.transport_mode = 'sea' and order_from = 'public' and m.code <> '' limit 10
  1285. ) t;select serial_no,h_bol,place_of_receipt_exp,place_of_delivery_exp,description,eta,order_from,cargo_type
  1286. from (
  1287. SELECT oo.serial_no,h_bol, place_of_receipt_exp, place_of_delivery_exp,m.description,eta,order_from, o.cargo_type
  1288. FROM public.kln_ocean oo
  1289. inner join LATERAL (select case when is_hazardous = 't' then 'Dangerous Goods'::text else 'General'::text end as cargo_type
  1290. from public.ocean o where o.serial_no = oo.serial_no) o on true
  1291. left join LATERAL (select a.code,a.description
  1292. from public.ocean_milestone a
  1293. inner join public.customer_service_milestone_sno s
  1294. on a.code = s.code
  1295. and s.type = 'sea'
  1296. and a.serial_no = oo.serial_no
  1297. and a.act_date is not null
  1298. order by s.sno desc limit 1) m on true
  1299. WHERE <{ExtendHand_KLN}> and oo.transport_mode = 'sea' and order_from = 'public' and m.code <> '' limit 20
  1300. ) t order by eta";
  1301. $data["List shipments with milestone updates in the last 7 days."] = "select count(*)
  1302. from (
  1303. select serial_no
  1304. from (SELECT oo.serial_no from public.ocean_milestone a
  1305. inner join public.customer_service_milestone_sno s on a.code = s.code
  1306. inner join public.kln_ocean oo on oo.serial_no = a.serial_no
  1307. where s.type = 'sea'
  1308. and a.act_date is not null
  1309. ) po
  1310. )t;
  1311. select serial_no,order_from,h_bol, description,update_date_format,update_date,
  1312. COALESCE(m.jsonb_data->>'milestone','')::jsonb->>'timezone' as timezone,
  1313. COALESCE(m.jsonb_data->>'milestone','')::jsonb->>'locations' as locations
  1314. from (
  1315. select serial_no,order_from,h_bol,description,to_char(update_date,'Mon DD') as update_date_format,update_date,code
  1316. from (SELECT oo.serial_no,oo.order_from,oo.h_bol,s.description,COALESCE(a.update_date, a.create_date) as update_date,a.code
  1317. from public.ocean_milestone a
  1318. inner join public.customer_service_milestone_sno s on a.code = s.code
  1319. inner join public.kln_ocean oo on oo.serial_no = a.serial_no
  1320. where s.type = 'sea'
  1321. and a.act_date is not null
  1322. ) po
  1323. )t left join LATERAL (select public.getTimeAndLocationForKln(serial_no,code,''::text)::jsonb as jsonb_data) m on true
  1324. order by update_date limit 10;
  1325. select aa.update_date_format, COUNT(*) AS total_count
  1326. from (
  1327. select DISTINCT ON (h_bol) h_bol, update_date_format
  1328. from (
  1329. select h_bol,to_char(update_date,'Mon DD') as update_date_format
  1330. from (SELECT oo.h_bol,COALESCE(a.update_date, a.create_date) as update_date
  1331. from public.ocean_milestone a
  1332. inner join public.kln_ocean oo on oo.serial_no = a.serial_no
  1333. where a.act_date is not null
  1334. ) po
  1335. )t order by h_bol
  1336. ) aa
  1337. group by aa.update_date_format order by aa.update_date_format ";
  1338. $data["What is the current status of my active shipments?"] ="SELECT count(*)
  1339. FROM public.kln_ocean oo
  1340. WHERE <{ExtendHand_KLN}> and ((oo.ata is not null and oo.ata >= CURRENT_DATE - INTERVAL '3 months' AND oo.ata < CURRENT_DATE)
  1341. or not exists( select 1 from public.ocean_milestone a where a.serial_no = oo.serial_no and a.act_date is not null and a.code = 'IFFDEL')) and oo.transport_mode = 'sea' and order_from = 'public';with oo as(
  1342. SELECT h_bol, place_of_receipt_exp, place_of_delivery_exp,serial_no,transport_mode,order_from
  1343. FROM public.kln_ocean oo
  1344. WHERE <{ExtendHand_KLN}> and ((oo.ata is not null and oo.ata >= CURRENT_DATE - INTERVAL '3 months' AND oo.ata < CURRENT_DATE)
  1345. or not exists( select 1 from public.ocean_milestone a where a.serial_no = oo.serial_no and a.act_date is not null and a.code = 'IFFDEL')) and oo.transport_mode = 'sea' and order_from = 'public' order by id limit 10
  1346. )
  1347. SELECT oo.*,mil.description,mil.act_date,mil.act_time,o.cargo_type,
  1348. COALESCE(jsonb_data->>'milestone','')::jsonb->>'timezone' as timezone,
  1349. COALESCE(jsonb_data->>'milestone','')::jsonb->>'locations' as locations
  1350. from oo
  1351. inner join LATERAL (select case when is_hazardous = 't' then 'Dangerous Goods'::text else 'General'::text end as cargo_type
  1352. from public.ocean o where o.serial_no = oo.serial_no) o on true
  1353. left join LATERAL (select a.code,s.description,to_char(a.act_date, 'YYYY-MM-DD') as act_date ,a.act_time
  1354. from public.ocean_milestone a
  1355. left join public.customer_service_milestone_sno s on a.code = s.code
  1356. and s.type = 'sea'
  1357. and a.serial_no = oo.serial_no
  1358. and a.act_date is not null
  1359. order by s.sno desc limit 1) mil on true
  1360. left join LATERAL (select public.getTimeAndLocationForKln(oo.serial_no,mil.code,''::text)::jsonb as jsonb_data) lt on true
  1361. where oo.transport_mode = 'sea' and order_from = 'public'
  1362. union all
  1363. SELECT oo.*,mil.description,mil.act_date,mil.act_time,o.cargo_type,
  1364. COALESCE(jsonb_data->>'milestone','')::jsonb->>'timezone' as timezone,
  1365. COALESCE(jsonb_data->>'milestone','')::jsonb->>'locations' as locations
  1366. from oo
  1367. inner join LATERAL (select case when is_hazardous = 't' then 'Dangerous Goods'::text else 'General'::text end as cargo_type
  1368. from sfs.ocean o where o.serial_no = oo.serial_no) o on true
  1369. left join LATERAL (select a.code,s.description,to_char(a.act_date, 'YYYY-MM-DD') as act_date ,a.act_time
  1370. from public.ocean_milestone a
  1371. left join public.customer_service_milestone_sno s on a.code = s.code
  1372. and s.type = 'air'
  1373. and a.serial_no = oo.serial_no
  1374. and a.act_date is not null
  1375. order by s.sno desc limit 1) mil on true
  1376. left join LATERAL (select public.getTimeAndLocationForKln(oo.serial_no,mil.code,''::text)::jsonb as jsonb_data) lt on true
  1377. where oo.transport_mode = 'sea' and order_from = 'sfs'
  1378. union all
  1379. SELECT oo.*,mil.description,mil.act_date,mil.act_time,o.cargo_type,
  1380. COALESCE(jsonb_data->>'milestone','')::jsonb->>'timezone' as timezone,
  1381. COALESCE(jsonb_data->>'milestone','')::jsonb->>'locations' as locations
  1382. from oo
  1383. inner join LATERAL (select case when is_hazardous = 't' then 'Dangerous Goods'::text else 'General'::text end as cargo_type
  1384. from public.ocean o where o.serial_no = oo.serial_no) o on true
  1385. left join LATERAL (select a.code,s.description,to_char(a.act_date, 'YYYY-MM-DD') as act_date ,a.act_time
  1386. from public.air_milestone a
  1387. left join public.customer_service_milestone_sno s on a.code = s.code
  1388. and s.type = 'air'
  1389. and a.serial_no = oo.serial_no
  1390. and a.act_date is not null
  1391. order by s.sno desc limit 1) mil on true
  1392. left join LATERAL (select public.getTimeAndLocationForKln(oo.serial_no,mil.code,''::text)::jsonb as jsonb_data) lt on true
  1393. where oo.transport_mode = 'air' and order_from = 'public'
  1394. union all
  1395. SELECT oo.*,mil.description,mil.act_date,mil.act_time,o.cargo_type,
  1396. COALESCE(jsonb_data->>'milestone','')::jsonb->>'timezone' as timezone,
  1397. COALESCE(jsonb_data->>'milestone','')::jsonb->>'locations' as locations
  1398. from oo
  1399. inner join LATERAL (select case when is_hazardous = 't' then 'Dangerous Goods'::text else 'General'::text end as cargo_type
  1400. from sfs.ocean o where o.serial_no = oo.serial_no) o on true
  1401. left join LATERAL (select a.code,s.description,to_char(a.act_date, 'YYYY-MM-DD') as act_date ,a.act_time
  1402. from sfs.air_milestone a
  1403. left join public.customer_service_milestone_sno s on a.code = s.code
  1404. and s.type = 'air'
  1405. and a.serial_no = oo.serial_no
  1406. and a.act_date is not null
  1407. order by s.sno desc limit 1) mil on true
  1408. left join LATERAL (select public.getTimeAndLocationForKln(oo.serial_no,mil.code,''::text)::jsonb as jsonb_data) lt on true
  1409. where oo.transport_mode = 'air' and order_from = 'sfs'";
  1410. $data["List shipments with container status updates in the last 7 days."] = "select count(*)
  1411. FROM ra_online_container_status s
  1412. LEFT JOIN oc_container oc ON s.status_id = oc.status_id
  1413. LEFT JOIN ocean o ON o.serial_no::text = oc.serial_no::text
  1414. LEFT JOIN public.ra_online_edi_event e on s.event_base = e.ra_name
  1415. WHERE o.status::text <> 'Cancelled'::text
  1416. and is_display = true
  1417. and s.insert_date <= CURRENT_DATE AND s.insert_date >='2023-02-23'
  1418. and exists(select 1 from kln_ocean oo where <{ExtendHand_KLN}> and oo.serial_no = o.serial_no);select oo.serial_no,oo.order_from,s.event_base as event,s.container_no,
  1419. to_char(to_timestamp(s.event_date, 'YYYYMMDD'), 'YYYY-MM-DD') as eventdate,
  1420. to_char(to_timestamp(s.event_date, 'YYYYMMDD'),'Mon DD') as _eventdate,
  1421. to_char(to_timestamp(s.event_time, 'HH24MI'), 'HH24:MI') as eventtime,
  1422. (select time_zone from public.city_timezone where uncode = s.event_code) as timezone,
  1423. e.description,
  1424. s.event_city as uncity
  1425. FROM ra_online_container_status s
  1426. LEFT JOIN oc_container oc ON s.status_id = oc.status_id
  1427. LEFT JOIN ocean o ON o.serial_no::text = oc.serial_no::text
  1428. LEFT JOIN public.ra_online_edi_event e on s.event_base = e.ra_name
  1429. LEFT JOIN public.kln_ocean oo ON oo.serial_no::text = o.serial_no::text
  1430. WHERE o.status::text <> 'Cancelled'::text
  1431. and is_display = true
  1432. and s.insert_date <= CURRENT_DATE AND s.insert_date >='2023-02-23'
  1433. and exists(select 1 from kln_ocean oo where <{ExtendHand_KLN}> and oo.serial_no = o.serial_no) limit 10;select aa._eventdate, COUNT(*) AS total_count
  1434. from (select DISTINCT ON (s.container_no) s.container_no,
  1435. to_char(to_timestamp(s.event_date, 'YYYYMMDD'),'Mon DD') as _eventdate
  1436. FROM ra_online_container_status s
  1437. LEFT JOIN oc_container oc ON s.status_id = oc.status_id
  1438. LEFT JOIN ocean o ON o.serial_no::text = oc.serial_no::text
  1439. LEFT JOIN public.ra_online_edi_event e on s.event_base = e.ra_name
  1440. WHERE o.status::text <> 'Cancelled'::text
  1441. and is_display = true
  1442. and s.insert_date <= CURRENT_DATE AND s.insert_date >='2023-02-23'
  1443. and exists(select 1 from kln_ocean oo where <{ExtendHand_KLN}> and oo.serial_no = o.serial_no)
  1444. order by s.container_no
  1445. )aa group by _eventdate order by _eventdate";
  1446. $data["Today's shipments summary."] = "select count(*)
  1447. from (
  1448. select oo.serial_no
  1449. from (
  1450. select t.serial_no from (
  1451. SELECT
  1452. a.serial_no,
  1453. ROW_NUMBER() OVER(PARTITION BY a.serial_no ORDER BY s.sno DESC) AS rn
  1454. from public.ocean_milestone a
  1455. left join public.customer_service_milestone_sno s on a.code = s.code
  1456. where s.type = 'sea'
  1457. and a.act_date is not null
  1458. --and a.update_date >= CURRENT_DATE AND a.update_date < CURRENT_DATE + INTERVAL '1 day'
  1459. )t WHERE rn = 1
  1460. ) po inner join public.kln_ocean oo on oo.serial_no = po.serial_no and (<{ExtendHand_KLN}>)
  1461. union all
  1462. select oo.serial_no
  1463. from (
  1464. select t.serial_no from (
  1465. SELECT
  1466. a.code,a.serial_no,
  1467. ROW_NUMBER() OVER(PARTITION BY a.serial_no ORDER BY s.sno DESC) AS rn
  1468. from public.air_milestone a
  1469. left join public.customer_service_milestone_sno s on a.code = s.code
  1470. where s.type = 'sea'
  1471. and a.act_date is not null
  1472. --and a.update_date >= CURRENT_DATE AND a.update_date < CURRENT_DATE + INTERVAL '1 day'
  1473. )t WHERE rn = 1
  1474. ) pa inner join public.kln_ocean oo on oo.serial_no = pa.serial_no and (<{ExtendHand_KLN}>)
  1475. union all
  1476. select oo.serial_no
  1477. from (
  1478. select t.serial_no from (
  1479. SELECT
  1480. a.serial_no,
  1481. ROW_NUMBER() OVER(PARTITION BY a.serial_no ORDER BY s.sno DESC) AS rn
  1482. from sfs.air_milestone a
  1483. left join public.customer_service_milestone_sno s on a.code = s.code
  1484. where s.type = 'sea'
  1485. and a.act_date is not null
  1486. --and a.update_date >= CURRENT_DATE AND a.update_date < CURRENT_DATE + INTERVAL '1 day'
  1487. )t WHERE rn = 1
  1488. ) sa inner join public.kln_ocean oo on oo.serial_no = sa.serial_no and (<{ExtendHand_KLN}>)
  1489. )t;select *
  1490. from (
  1491. select *,oo.serial_no,oo.order_from,oo.h_bol,oo.transport_mode,oo.place_of_receipt_exp, oo.place_of_delivery_exp,
  1492. COALESCE(jsonb_data->>'milestone','')::jsonb->>'timezone' as timezone,
  1493. COALESCE(jsonb_data->>'milestone','')::jsonb->>'locations' as locations
  1494. from (
  1495. select *,public.getTimeAndLocationForKln(t.serial_no,t.code,''::text)::jsonb as jsonb_data
  1496. from (
  1497. SELECT
  1498. case when a.code = 'IFFDEP' then 'Departure'
  1499. when a.code = 'IFFARR' then 'Arrived'
  1500. when a.code = 'IFFDEL' then 'Delivered'
  1501. else s.description end as action_type,
  1502. a.update_date,a.code,a.serial_no,
  1503. to_char(a.update_date, 'Mon_DD_YYYY') as _update_date,
  1504. to_char(a.act_date, 'YYYY-MM-DD') as act_date ,
  1505. a.act_time,
  1506. ROW_NUMBER() OVER(PARTITION BY a.serial_no ORDER BY s.sno DESC) AS rn
  1507. from public.ocean_milestone a
  1508. left join public.customer_service_milestone_sno s on a.code = s.code
  1509. where s.type = 'sea'
  1510. and a.act_date is not null
  1511. --and a.update_date >= CURRENT_DATE AND a.update_date < CURRENT_DATE + INTERVAL '1 day'
  1512. )t WHERE rn = 1
  1513. ) po inner join public.kln_ocean oo on oo.serial_no = po.serial_no
  1514. union all
  1515. select *,oo.serial_no,oo.order_from,oo.h_bol,oo.transport_mode,oo.place_of_receipt_exp, oo.place_of_delivery_exp,
  1516. COALESCE(jsonb_data->>'milestone','')::jsonb->>'timezone' as timezone,
  1517. COALESCE(jsonb_data->>'milestone','')::jsonb->>'locations' as locations
  1518. from (
  1519. select *,public.getTimeAndLocationForKln(t.serial_no,t.code,''::text)::jsonb as jsonb_data
  1520. from (
  1521. SELECT
  1522. case when a.code = 'IFFDEP' then 'Departure'
  1523. when a.code = 'IFFARR' then 'Arrived'
  1524. when a.code = 'IFFDEL' then 'Delivered'
  1525. else s.description end as action_type,
  1526. a.update_date,a.code,a.serial_no,
  1527. to_char(a.update_date, 'Mon_DD_YYYY') as _update_date,
  1528. to_char(a.act_date, 'YYYY-MM-DD') as act_date ,
  1529. a.act_time,
  1530. ROW_NUMBER() OVER(PARTITION BY a.serial_no ORDER BY s.sno DESC) AS rn
  1531. from public.air_milestone a
  1532. left join public.customer_service_milestone_sno s on a.code = s.code
  1533. where s.type = 'sea'
  1534. and a.act_date is not null
  1535. --and a.update_date >= CURRENT_DATE AND a.update_date < CURRENT_DATE + INTERVAL '1 day'
  1536. )t WHERE rn = 1
  1537. ) pa inner join public.kln_ocean oo on oo.serial_no = pa.serial_no
  1538. union all
  1539. select *,oo.serial_no,oo.order_from,oo.h_bol,oo.transport_mode,oo.place_of_receipt_exp, oo.place_of_delivery_exp,
  1540. COALESCE(jsonb_data->>'milestone','')::jsonb->>'timezone' as timezone,
  1541. COALESCE(jsonb_data->>'milestone','')::jsonb->>'locations' as locations
  1542. from (
  1543. select *,public.getTimeAndLocationForKln(t.serial_no,t.code,''::text)::jsonb as jsonb_data
  1544. from (
  1545. SELECT
  1546. case when a.code = 'IFFDEP' then 'Departure'
  1547. when a.code = 'IFFARR' then 'Arrived'
  1548. when a.code = 'IFFDEL' then 'Delivered'
  1549. else s.description end as action_type,
  1550. a.update_date,a.code,a.serial_no,
  1551. to_char(a.update_date, 'Mon_DD_YYYY') as _update_date,
  1552. to_char(a.act_date, 'YYYY-MM-DD') as act_date ,
  1553. a.act_time,
  1554. ROW_NUMBER() OVER(PARTITION BY a.serial_no ORDER BY s.sno DESC) AS rn
  1555. from sfs.air_milestone a
  1556. left join public.customer_service_milestone_sno s on a.code = s.code
  1557. where s.type = 'sea'
  1558. and a.act_date is not null
  1559. --and a.update_date >= CURRENT_DATE AND a.update_date < CURRENT_DATE + INTERVAL '1 day'
  1560. )t WHERE rn = 1
  1561. ) sa inner join public.kln_ocean oo on oo.serial_no = sa.serial_no
  1562. )t limit 10;select sum(case when (action_type='Departure') then 1 else 0 end) as dep,
  1563. sum(case when (action_type='Arrived') then 1 else 0 end) as arr,
  1564. sum(case when (action_type='Delivered') then 1 else 0 end) as del
  1565. from (
  1566. select action_type
  1567. from (
  1568. select t.action_type,t.serial_no from (
  1569. SELECT
  1570. case when a.code = 'IFFDEP' then 'Departure'
  1571. when a.code = 'IFFARR' then 'Arrived'
  1572. when a.code = 'IFFDEL' then 'Delivered'
  1573. else s.description end as action_type,
  1574. a.serial_no,
  1575. ROW_NUMBER() OVER(PARTITION BY a.serial_no ORDER BY s.sno DESC) AS rn
  1576. from public.ocean_milestone a
  1577. left join public.customer_service_milestone_sno s on a.code = s.code
  1578. where s.type = 'sea'
  1579. and a.act_date is not null
  1580. --and a.update_date >= CURRENT_DATE AND a.update_date < CURRENT_DATE + INTERVAL '1 day'
  1581. )t WHERE rn = 1
  1582. ) po inner join public.kln_ocean oo on oo.serial_no = po.serial_no and (<{ExtendHand_KLN}>)
  1583. union all
  1584. select action_type
  1585. from (
  1586. select t.action_type,t.serial_no from (
  1587. SELECT
  1588. case when a.code = 'IFFDEP' then 'Departure'
  1589. when a.code = 'IFFARR' then 'Arrived'
  1590. when a.code = 'IFFDEL' then 'Delivered'
  1591. else s.description end as action_type,
  1592. a.serial_no,
  1593. ROW_NUMBER() OVER(PARTITION BY a.serial_no ORDER BY s.sno DESC) AS rn
  1594. from public.air_milestone a
  1595. left join public.customer_service_milestone_sno s on a.code = s.code
  1596. where s.type = 'sea'
  1597. and a.act_date is not null
  1598. --and a.update_date >= CURRENT_DATE AND a.update_date < CURRENT_DATE + INTERVAL '1 day'
  1599. )t WHERE rn = 1
  1600. ) pa inner join public.kln_ocean oo on oo.serial_no = pa.serial_no and (<{ExtendHand_KLN}>)
  1601. union all
  1602. select action_type
  1603. from (
  1604. select t.action_type,t.serial_no from (
  1605. SELECT
  1606. case when a.code = 'IFFDEP' then 'Departure'
  1607. when a.code = 'IFFARR' then 'Arrived'
  1608. when a.code = 'IFFDEL' then 'Delivered'
  1609. else s.description end as action_type,
  1610. a.serial_no,
  1611. ROW_NUMBER() OVER(PARTITION BY a.serial_no ORDER BY s.sno DESC) AS rn
  1612. from sfs.air_milestone a
  1613. left join public.customer_service_milestone_sno s on a.code = s.code
  1614. where s.type = 'sea'
  1615. and a.act_date is not null
  1616. --and a.update_date >= CURRENT_DATE AND a.update_date < CURRENT_DATE + INTERVAL '1 day'
  1617. )t WHERE rn = 1
  1618. ) sa inner join public.kln_ocean oo on oo.serial_no = sa.serial_no and (<{ExtendHand_KLN}>)
  1619. )t";
  1620. $data["Sort my active shipments by earliest arrival date."] = "select to_char(oo.eta,'DD-Mon') as eta, oo.h_bol,oo.transport_mode, oo.place_of_receipt_exp, oo.place_of_delivery_exp,oo.serial_no,oo.order_from,
  1621. case when oo.eta - CURRENT_DATE <= 0 then '< 1 days'::text
  1622. else (oo.eta - CURRENT_DATE)||' days'::text end as day_to_arr
  1623. from public.kln_ocean oo where 1=1 order by eta limit 10";
  1624. return $data[$type];
  1625. }
  1626. //AES 加密
  1627. public static function AES_128_CBC_Encrypt($data,$key = "fT5!R1k$7Mv@4Q9X",$iv = '1234567890123456'){
  1628. //$key = 'fT5!R1k$7Mv@4Q9X'; // 密钥应该是16字节(128位),24字节(192位)或32字节(256位)
  1629. $method = 'AES-128-CBC';
  1630. //$iv = '1234567890123456';
  1631. // 加密
  1632. $encrypted = openssl_encrypt($data, $method, $key, OPENSSL_RAW_DATA, $iv);
  1633. // 编码为可打印的字符串,如Base64
  1634. $encrypted = base64_encode($encrypted);
  1635. return $encrypted;
  1636. }
  1637. /**
  1638. * 解密decrypt
  1639. */
  1640. public static function AES_encrypted($encrypted_string,$isbase64_encode = true,$key = "fT5!R1k$7Mv@4Q9X",$iv = '1234567890123456'){
  1641. //$key = 'fT5!R1k$7Mv@4Q9X'; // 16 bytes key
  1642. //$iv = '1234567890123456'; // 16 bytes IV
  1643. if($isbase64_encode){
  1644. $decrypted = openssl_decrypt(base64_decode($encrypted_string), 'AES-128-CBC', $key, OPENSSL_RAW_DATA, $iv);
  1645. }else{
  1646. $decrypted = openssl_decrypt($encrypted_string, 'AES-128-CBC', $key, OPENSSL_RAW_DATA, $iv);
  1647. }
  1648. return $decrypted;
  1649. }
  1650. /**
  1651. * 去重显示 pono
  1652. */
  1653. public static function outDisplayForMergeForDISTINCT($ocPoNo, $itemPoNo){
  1654. if ($ocPoNo === null && $itemPoNo === null) {
  1655. return null;
  1656. }
  1657. if (trim($ocPoNo) == trim($itemPoNo)) {
  1658. return $ocPoNo;
  1659. }
  1660. $parts = [];
  1661. if (!empty($ocPoNo)) $parts[] = $ocPoNo;
  1662. if (!empty($itemPoNo)) $parts[] = $itemPoNo;
  1663. return implode(',', $parts);
  1664. }
  1665. }
  1666. ?>