123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628 |
- <?php
- use App\Library\Redis;
- use App\Library\Log;
- use Hyperf\DbConnection\Db;
- function nextDay($data)
- {
- return date('Y-m-d',strtotime('+1 day', strtotime($data)));
- }
- function nowDate()
- {
- return date('Y-m-d H:i:s');
- }
- function thirteenTime(){
- return floor(microtime(true)*1000);
- }
- function nowDateThirteen($timess){
- return date('Y-m-d H:i:s', floor($timess / 1000));
- }
- if (!function_exists('getTree')){
- function getTree($data, $pId=0)
- {
- $tree = array();
- foreach ($data as $k => $v) {
- if ($v->parentId == $pId) {
- $v->children = getTree($data, $v->id);
- $tree[] = $v;
-
- }
- }
- return $tree;
- }
- }
- if (!function_exists('numToWord')) {
- function numToWord($num)
- {
- $chiNum = array('零', '一', '二', '三', '四', '五', '六', '七', '八', '九');
- $chiUni = array('','十', '百', '千', '万', '亿', '十', '百', '千');
- $chiStr = '';
- $num_str = (string)$num;
- $count = strlen($num_str);
- $last_flag = true;
- $zero_flag = true;
- $temp_num = null;
- $chiStr = '';
- if ($count == 2) {
- $temp_num = $num_str[0];
- $chiStr = $temp_num == 1 ? $chiUni[1] : $chiNum[$temp_num].$chiUni[1];
- $temp_num = $num_str[1];
- $chiStr .= $temp_num == 0 ? '' : $chiNum[$temp_num];
- }else if($count > 2){
- $index = 0;
- for ($i=$count-1; $i >= 0 ; $i--) {
- $temp_num = $num_str[$i];
- if ($temp_num == 0) {
- if (!$zero_flag && !$last_flag ) {
- $chiStr = $chiNum[$temp_num]. $chiStr;
- $last_flag = true;
- }
- }else{
- $chiStr = $chiNum[$temp_num].$chiUni[$index%9] .$chiStr;
- $zero_flag = false;
- $last_flag = false;
- }
- $index ++;
- }
- }else{
- $chiStr = $chiNum[$num_str[0]];
- }
- return $chiStr;
- }
- }
- if (!function_exists('createNo')) {
- function createNo($prefix = '')
- {
- return $prefix . date('YmdHis') . sprintf("%03d", rand(1, 99));
- }
- }
- if (!function_exists('llog')) {
-
- function llog($log_title,$message,$remarks='info'){
- Log::get($remarks,$log_title)->info($message);
- }
- }
- if (!function_exists('transDate')) {
- function transDate($data)
- {
- return date('Y-m-d H:i:s', strtotime($data));
- }
- }
- if (!function_exists('complete_user_pic')) {
- function complete_user_pic($val) {
- if ($val == '') {
- return env('DEFAULT_USER_PIC');
- } else {
- if (strpos('http', $val) === false) {
- return env('OSS_URL') . $val;
- }
- }
- }
- }
- if (!function_exists('createOrderNo')) {
- function createOrderNo()
- {
- return date('YmdHis') . sprintf("%03d", rand(1, 999));
- }
- }
- if (!function_exists('genKey')) {
- function genKey($key_length){
- $str = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789';
- $len = strlen($str)-1;
- $key = '';
- for ($i=0; $i<$key_length; $i++){
- $num = mt_rand(0, $len);
- $key .= $str[$num];
- }
- return $key;
- }
- }
- if (!function_exists('complete_pic')) {
- function complete_pic($val) {
-
- if ($val != '' && strpos($val, 'http') === false) {
- return env('OSS_URL') . $val;
- }
- return $val;
- }
- }
- function configDictionary($type=0){
- $prefix = env('REDIS_PREFIX','swapbot_');
- if($type == 1){
- Redis::del($prefix.'DictionaryData');
- }else{
- $data = Redis::get($prefix.'DictionaryData');
- }
- if(empty($data)){
- $res = Db::table('sys_data_dictionary')->select('dic_key','dic_value','dic_name')->get()->map(function ($value){
- return (array)$value;
- })->toArray();
- $data= array();
- foreach ($res as $key => $v) {
- $data[$v['dic_key']][$v['dic_value']] = $v['dic_name'];
- }
- Redis::setex($prefix.'DictionaryData',86400,serialize($data));
- }else{
- $data = unserialize($data);
- }
- return $data;
- }
- function configDataDictionary($type=0){
- $prefix = env('REDIS_PREFIX','swapbot_');
- if($type == 1){
- Redis::del($prefix.'ConfigData');
- }else{
- $data = Redis::get($prefix.'ConfigData');
- }
- if(empty($data)){
- $res = Db::table('sys_config')->select('config_key','config_val')->get()->map(function ($value){
- return (array)$value;
- })->toArray();
- $data= array();
- foreach ($res as $key => $v) {
- $data[$v['config_key']] = json_decode($v['config_val'],true);
- }
- Redis::setex($prefix.'ConfigData',86400,serialize($data));
-
- }else{
- $data = unserialize($data);
- }
- return $data;
- }
- function getRedis($field){
- $prefix = env('REDIS_PREFIX','swapbot_');
- return Redis::get($prefix.$field);
- }
- function setRedis($field,$data){
- $prefix = env('REDIS_PREFIX','swapbot_');
- return Redis::set($prefix.$field,$data);
- }
- function deleteRedis($data){
- $prefix = env('REDIS_PREFIX','swapbot_');
- return Redis::del($prefix.$data);
- }
- function Get_Pay($url, $data = null, array $heders = [], $time=0)
- {
- $ch = curl_init();
- curl_setopt($ch, CURLOPT_URL, $url);
- curl_setopt($ch, CURLOPT_HEADER, 0);
- curl_setopt($ch, CURLOPT_TIMEOUT, $time);
- curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
- curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
- curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE);
- if(!empty($data)){
- curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
- }
- if(!empty($heders)){
- curl_setopt($ch, CURLOPT_HTTPHEADER, $heders);
- }
- $content = curl_exec($ch);
- curl_close($ch);
- return $content;
- }
- function post_url(string $url, array $data = [],$time_out = 5)
- {
- $data = json_encode($data);
- $headerArray = array("Content-type: application/json;charset='utf-8'");
- $curl = curl_init();
- curl_setopt($curl, CURLOPT_URL, $url);
- curl_setopt($curl, CURLOPT_CONNECTTIMEOUT , $time_out);
- curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, 0);
- curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, 0);
- curl_setopt($curl, CURLOPT_POST, 1);
- curl_setopt($curl, CURLOPT_POSTFIELDS, $data);
- curl_setopt($curl, CURLOPT_HTTPHEADER, $headerArray);
- curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
- $output = curl_exec($curl);
- curl_close($curl);
- return json_decode($output,true);
- }
- function post_multi(string $url, array $data = [],$time_out = 5)
- {
- $headerArray = array("Content-Type: multipart/form-data;charset='utf-8'");
- $curl = curl_init();
- curl_setopt($curl, CURLOPT_URL, $url);
- curl_setopt($curl, CURLOPT_CONNECTTIMEOUT , $time_out);
- curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, 0);
- curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, 0);
- curl_setopt($curl, CURLOPT_POST, 1);
- curl_setopt($curl, CURLOPT_POSTFIELDS, $data);
- curl_setopt($curl, CURLOPT_HTTPHEADER, $headerArray);
- curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
- $output = curl_exec($curl);
- curl_close($curl);
- return json_decode($output,true);
- }
- function curl_post_https($url,$data,$headers=null,$cookie=null){
- $curl = curl_init();
- curl_setopt($curl, CURLOPT_URL, $url);
- curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, 0);
- curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, 2);
-
-
-
- if(!empty($headers)){
- curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
- }
- if(!empty($cookie)){
- curl_setopt($curl, CURLOPT_COOKIE, $cookie);
- }
- curl_setopt($curl, CURLOPT_POST, 1);
- curl_setopt($curl, CURLOPT_POSTFIELDS, $data);
- curl_setopt($curl, CURLOPT_TIMEOUT, 10);
- curl_setopt($curl, CURLOPT_HEADER, 0);
- curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
- $tmpInfo = curl_exec($curl);
- curl_close($curl);
- return $tmpInfo;
- }
- function curl_get_https($url,$headers=null,$raw=null,$time=6){
- $curl = curl_init();
- curl_setopt($curl, CURLOPT_URL, $url);
- curl_setopt($curl, CURLOPT_TIMEOUT, $time);
- curl_setopt($curl, CURLOPT_HEADER, 0);
- if(!empty($headers)){
- curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
- }
- curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
- curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
- curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, 2);
- if($raw){
- curl_setopt($curl, CURLOPT_POSTFIELDS, $raw);
- }
- $tmpInfo = curl_exec($curl);
- curl_close($curl);
- return $tmpInfo;
- }
- function getyuming(){
- $http_type = ((isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == 'on') || (isset($_SERVER['HTTP_X_FORWARDED_PROTO']) && $_SERVER['HTTP_X_FORWARDED_PROTO'] == 'https')) ? 'https://' : 'http://';
- return env('APP_URL') ?? $http_type;
- }
- function array_replace_key_by_column(array $lists, $key = ''){
- $datas = [];
- if(is_array($lists) && $lists){
- foreach ($lists as $item){
- $datas[$item[$key]] = $item;
- }
- }
- return $datas;
- }
- function addAdminOptLog($opt_ref_sn=''){
- Db::table('sys_admin_opt_log')->insert([
- 'admin_id' => auth('admin')->id(),
- 'opt_module' => request()->path(),
- 'opt_ref_sn' => $opt_ref_sn,
- 'opt_time' => nowDate(),
- 'opt_ip' => request()->getClientIp(),
- ]);
- }
- function getKeyRedis(){
- $prefix = env('REDIS_PREFIX','swapbot_');
- return Redis::keys($prefix."*");
- }
- function descNumberOne($str){
- $str = strrev($str);
- $data = '';
- for ($i=0; $i < strlen($str); $i++) {
- if(is_numeric($str[$i])){
- $data = $str[$i];
- break;
- }
- }
- return $data;
- }
- function fill0($str, $bit=64){
- if(!strlen($str)) return "";
- $str_len = strlen($str);
- $zero = '';
- for($i=$str_len; $i<$bit; $i++){
- $zero .= "0";
- }
- $real_str = $zero . $str;
- return $real_str;
- }
- function decToHex($value, $mark = true)
- {
- $hexvalues = [
- '0','1','2','3','4','5','6','7',
- '8','9','a','b','c','d','e','f'
- ];
- $hexval = '';
- while($value != '0') {
- $hexval = $hexvalues[bcmod($value, '16')] . $hexval;
- $value = bcdiv($value, '16', 0);
- }
- return ($mark ? '0x' . $hexval : $hexval);
- }
- function jsonEncode($array){
- return json_encode($array, JSON_UNESCAPED_UNICODE);
- }
- function jsonDecode($json){
- return json_decode($json, true);
- }
- function calculationExcept($price,$number){
- $multiple = 1;
- if($number > 0){
- for ($i=0; $i < $number; $i++) {
- $multiple = $multiple.'0';
- }
- $multiple = (int)$multiple;
- }
- $data = bcdiv($price,$multiple,$number);
- if(strpos(floatval($data),'-') == false){
-
- $data = floatval($data);
- }else{
-
- $data = rtrim(rtrim($data, '0'), '.');
- }
- return $data;
- }
- function handleAmount($amount){
- return $amount * 10 ** 6;
- }
- function hexToDec($number)
- {
-
- $number = remove0x(strtolower($number));
- $decvalues = [
- '0' => '0', '1' => '1', '2' => '2',
- '3' => '3', '4' => '4', '5' => '5',
- '6' => '6', '7' => '7', '8' => '8',
- '9' => '9', 'a' => '10', 'b' => '11',
- 'c' => '12', 'd' => '13', 'e' => '14',
- 'f' => '15'];
- $decval = '0';
- $number = strrev($number);
- for($i = 0; $i < strlen($number); $i++) {
- $decval = bcadd(bcmul(bcpow('16', $i, 0), $decvalues[$number[$i]]), $decval);
- }
- return $decval;
- }
- function remove0x($value)
- {
- if (strtolower(substr($value, 0, 2)) == '0x') {
- return substr($value, 2);
- }
- return $value;
- }
- function generate_signature($timestamp, $method, $request_path, $secret_key) {
-
- $string_to_sign = $timestamp . $method . $request_path;
-
- $hash = hash_hmac('sha256', $string_to_sign, $secret_key, true);
-
- return base64_encode($hash);
- }
- function send_request($method, $request_path, $base_url, $api_key, $secret_key) {
-
- $timestamp = gmdate("Y-m-d\TH:i:s.v\Z");
-
- $signature = generate_signature($timestamp, $method, $request_path, $secret_key);
-
- $headers = [
- "Content-Type: application/json",
- "MF-ACCESS-KEY: {$api_key}",
- "MF-ACCESS-SIGN: {$signature}",
- "MF-ACCESS-TIMESTAMP: {$timestamp}",
- ];
-
- $ch = curl_init();
- curl_setopt($ch, CURLOPT_URL, $base_url . $request_path);
- curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $method);
- curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
- curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
-
- $response = curl_exec($ch);
- $http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE);
- curl_close($ch);
-
- return [
- "status_code" => $http_code,
- "response" => $response
- ];
- }
|