common.php 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255
  1. <?php
  2. use think\facade\Config;
  3. use think\facade\Db;
  4. use think\facade\Filesystem;
  5. // 应用公共文件
  6. function error_show($code=0,$message=""){
  7. $result = ['code'=>$code,"message"=>$message];
  8. echo json_encode($result,JSON_UNESCAPED_UNICODE);
  9. die();
  10. }
  11. // 应用公共文件
  12. function app_show($code=0,$message="",$data=[]){
  13. $result = ['code'=>$code,"message"=>$message,"data"=>$data];
  14. echo json_encode($result,JSON_UNESCAPED_UNICODE);
  15. die();
  16. }
  17. function makeNo($str){
  18. $date=date("mdHis");
  19. $year = date("Y")-2000;
  20. $msec=randomkeys(4);
  21. return $str.$msec.$year.$date;
  22. }
  23. function randomkeys($length) {
  24. $returnStr='';
  25. $pattern = '1234567890abcdefghijklmnopqrstuvwxyz';//ABCDEFGHIJKLOMNOPQRSTUVWXYZ
  26. for($i = 0; $i < $length; $i ++) {
  27. $returnStr .= $pattern[mt_rand ( 0, strlen($pattern)-1 )]; //生成php随机数
  28. }
  29. return $returnStr;
  30. }
  31. //参数1:访问的URL,参数2:post数据(不填则为GET),参数3:提交的$cookies,参数4:是否返回$cookies
  32. function curl_request($url,$post=''){
  33. $curl = curl_init();
  34. curl_setopt($curl, CURLOPT_URL, $url);
  35. curl_setopt($curl, CURLOPT_USERAGENT, 'Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; Trident/6.0)');
  36. curl_setopt($curl, CURLOPT_FOLLOWLOCATION, 1);
  37. curl_setopt($curl, CURLOPT_AUTOREFERER, 1);
  38. curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
  39. if($post) {
  40. curl_setopt($curl, CURLOPT_POST, 1);
  41. curl_setopt($curl, CURLOPT_POSTFIELDS, http_build_query($post));
  42. }
  43. curl_setopt($curl, CURLOPT_TIMEOUT, 10);
  44. curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
  45. $data = curl_exec($curl);
  46. if (curl_errno($curl)) {
  47. return curl_error($curl);
  48. }
  49. curl_close($curl);
  50. return $data;
  51. }
  52. /**
  53. * @param $token
  54. * @return array
  55. * @throws \think\db\exception\DataNotFoundException
  56. * @throws \think\db\exception\DbException
  57. * @throws \think\db\exception\ModelNotFoundException
  58. * @throws \think\exception\DbException
  59. */
  60. function VerifyTokens($token){
  61. $url = env("user.hosturl")."verifyToken";
  62. $data=[
  63. "token"=>$token
  64. ];
  65. $response=curl_request($url,$data);
  66. return json_decode($response,true);
  67. }
  68. /**
  69. * @param $token
  70. * @param $condition
  71. * @return mixed
  72. */
  73. function GetUserlist($token,$condition){
  74. $host = Config::get("app");
  75. $url = env("user.hosturl")."userlist";
  76. $condition['token']=$token;
  77. $response=curl_request($url,$condition);
  78. return json_decode($response,true);
  79. }
  80. /**
  81. * @param $token
  82. * @param $condition
  83. * @return mixed
  84. */
  85. function GetAccountall($token, $condition){
  86. $host = Config::get("app");
  87. $url = env("user.hosturl")."userall";
  88. $condition['token']=$token;
  89. $response=curl_request($url,$condition);
  90. return json_decode($response,true);
  91. }
  92. function GetList($token,$condition){
  93. $host = Config::get("app");
  94. $url = env("user.hosturl")."userlist";
  95. $condition['token']=$token;
  96. $response=curl_request($url,$condition);
  97. return json_decode($response,true);
  98. }
  99. function GetUserInfo($token){
  100. $host = Config::get("app");
  101. $url = env("user.hosturl")."userinfo";
  102. $data=[
  103. "token"=>$token
  104. ];
  105. $response=curl_request($url,$data);
  106. return json_decode($response,true);
  107. }
  108. /**手机号验证
  109. * @param $mobile
  110. * @return bool
  111. */
  112. function checkMobile($mobile){
  113. if (!is_numeric($mobile)) {
  114. return false;
  115. }
  116. return preg_match('#^1[3,4,5,6,7,8,9]{1}[\d]{9}$#', $mobile) ? true : false;
  117. }
  118. /**
  119. * @param $token
  120. * @param $condition
  121. * @return mixed
  122. */
  123. function resetinfo($token,$condition){
  124. $host = Config::get("app");
  125. $url = env("user.hosturl")."usersave";
  126. $condition['token']=$token;
  127. $response=curl_request($url,$condition);
  128. return json_decode($response,true);
  129. }
  130. /**
  131. * @param $token
  132. * @param $condition
  133. * @return mixed
  134. */
  135. function resetstatus($token,$condition){
  136. $host = Config::get("app");
  137. $url = env("user.hosturl")."userstatus";
  138. $condition['token']=$token;
  139. $response=curl_request($url,$condition);
  140. return json_decode($response,true);
  141. }
  142. function crea($data,$vio=0)
  143. {
  144. $db = Db::name("company_item")->where(['pid'=>$data['id'],'is_del'=>0])->select()->toArray();
  145. if($vio==1){
  146. $d = Db::name("depart_user")->where(['itemid'=>$data['id'],'is_del'=>0])->select()->toArray();
  147. if(empty($d)){
  148. $data['item']=[];
  149. }else{
  150. $data['item']=$d;
  151. }
  152. }
  153. if(empty($db)){
  154. $data['child']=[];
  155. return $data;
  156. }
  157. //var_dump($db);
  158. foreach ($db as $p){
  159. $data['child'][]=crea($p,$vio);
  160. }
  161. return $data;
  162. }
  163. /**
  164. * @param $files
  165. * @return array
  166. */
  167. function UploadImg($files)
  168. {
  169. $savename = [];
  170. $files = !is_array($files) ? [$files] : $files;
  171. try {
  172. //验证
  173. validate(['imgFile' => ['fileSize' => 10240000, 'fileExt' => 'jpg,jpeg,png,bmp,gif', 'fileMime' => 'image/jpeg,image/png,image/gif']])->check(['imgFile' => $files]);
  174. foreach ($files as $file) {
  175. $url = Filesystem::disk('public')->putFile('topic/' . date("Ymd"), $file, function () use ($file) {
  176. return str_replace('.' . $file->getOriginalExtension(), '', $file->getOriginalName() . "_" . date('YmdHis'));
  177. });
  178. $name = str_replace('.' . $file->getOriginalExtension(), '', $file->getOriginalName());
  179. $temp = ["url" => $url, "name" => $name];
  180. $savename[] = $temp;
  181. }
  182. return $savename;
  183. } catch (\think\exception\ValidateException $e) {
  184. return $e->getMessage();
  185. }
  186. }
  187. function made($var,$data=[]){
  188. $str = Db::name('model')->where(['id'=>$var])->find();
  189. $vmn =[];
  190. $vmn['id'] =$str['id'];
  191. $vmn['rename'] =$str['name'];
  192. array_unshift($data,$vmn);
  193. if($str['pid']==0){
  194. return $data;
  195. }else{
  196. return made($str['pid'],$data);
  197. }
  198. }
  199. /**
  200. * @param $token
  201. * @param $condition ['id'=>1]
  202. * @return mixed
  203. */
  204. function GetInfoById($token,$condition){
  205. $host = Config::get("app");
  206. $url = env("user.hosturl")."userinfo";
  207. $condition['token']=$token;
  208. $response=curl_request($url,$condition);
  209. return json_decode($response,true);
  210. }
  211. function make($var,$data=[]){
  212. $str = Db::name('company_item')->where(['id'=>$var])->find();
  213. $vmn =[];
  214. $vmn['id'] =$str['id'];
  215. $vmn['name'] =$str['name'];
  216. array_unshift($data,$vmn);
  217. // $var['id']=made();
  218. if($str['pid']==0){
  219. // krsort($data);
  220. return $data;
  221. }else{
  222. return make($str['pid'],$data);
  223. }
  224. }