Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
杨树贤
/
ic_server_welfare
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
9097fac0
authored
Oct 23, 2019
by
杨树贤
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
判断通知开关
parent
f7f2c0c3
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
31 additions
and
15 deletions
app/Tasks/SendNoticeTask.php
common
storage/laravels.json
storage/laravels.pid
app/Tasks/SendNoticeTask.php
View file @
9097fac0
...
...
@@ -2,6 +2,7 @@
namespace
App\Tasks
;
use
Common\Model\RedisModel
;
use
Hhxsv5\LaravelS\Swoole\Task\Task
;
use
Illuminate\Support\Facades\Log
;
...
...
@@ -10,35 +11,37 @@ class SendNoticeTask extends Task
private
$data
;
private
$PushTask
=
false
;
private
$TaskNum
;
public
function
__construct
(
$keyword
,
$data
,
$toUser
,
$TaskNum
=
1
,
$is_ignore
=
0
)
public
function
__construct
(
$keyword
,
$data
,
$toUser
,
$TaskNum
=
1
,
$is_ignore
=
0
)
{
if
(
is_array
(
$data
))
{
$data
=
json_encode
(
$data
);
}
$this
->
data
=
[
'data'
=>
$data
,
'touser'
=>
$toUser
,
'data'
=>
$data
,
'touser'
=>
$toUser
,
'is_ignore'
=>
$is_ignore
,
'keyword'
=>
$keyword
'keyword'
=>
$keyword
,
];
$this
->
TaskNum
=
$TaskNum
;
}
// 处理任务的逻辑,运行在Task进程中,不能投递任务
public
function
handle
()
{
// return true;
$time
=
date
(
'H'
);
if
(
20
<
$time
||
$time
<
9
)
{
//不发通知时段处理
$switches
=
$this
->
getNotificationSwitches
(
$this
->
data
[
'touser'
]);
if
(
$switches
[
'sys_msg'
]
==
0
)
{
//不发通知时段处理
return
true
;
}
try
{
$Url
=
config
(
'website.IC_AUTH_API'
)
.
'/hprose/HttpSendMsg'
;
$Url
=
config
(
'website.IC_AUTH_API'
)
.
'/hprose/HttpSendMsg'
;
$res
=
json_decode
(
reportCurl
(
$Url
,
$this
->
data
,
true
,
[
'MsgToken:fg368hjk4567wtbk8'
]),
true
);
if
(
!
isset
(
$res
[
'errcode'
])
||
$res
[
'errcode'
]
!==
0
)
{
ErrorLog
(
ErrorCode
(
001
,
9
),
'消息系统消息发送失败'
);
$this
->
PushTask
=
true
;
}
return
true
;
}
catch
(
\Exception
$e
)
{
SendErrMsg
(
$e
);
...
...
@@ -51,7 +54,7 @@ class SendNoticeTask extends Task
{
//消息推送失败,任务重试,第一次为4分钟后,第二次为10分钟后,第三次为18分钟后
if
(
$this
->
PushTask
===
true
&&
$this
->
TaskNum
<
4
)
{
$this
->
TaskNum
++
;
$this
->
TaskNum
++
;
$task
=
new
SendNoticeTask
(
$this
->
data
[
'keyword'
],
$this
->
data
[
'data'
],
...
...
@@ -59,8 +62,21 @@ class SendNoticeTask extends Task
$this
->
TaskNum
,
$this
->
data
[
'is_ignore'
]
);
$task
->
delay
(
60
*
2
*
$this
->
TaskNum
);
$task
->
delay
(
60
*
2
*
$this
->
TaskNum
);
Task
::
deliver
(
$task
);
}
}
//获取通知开关,目前只有系统通知被用到
private
function
getNotificationSwitches
(
$userId
)
{
$redis
=
new
RedisModel
();
$user
=
json_decode
(
$redis
->
hget
(
'ic_user'
,
$userId
),
true
);
$result
=
[];
//不存在代表是不可以接受通知的
$result
[
'sys_msg'
]
=
array_get
(
$user
,
'sys_msg'
,
0
);
$result
[
'activity_msg'
]
=
array_get
(
$user
,
'activity_msg'
,
0
);
return
$result
;
}
}
common
@
6a492b76
Subproject commit
8428774c731bbcd89366d7d698daf57579f0b53b
Subproject commit
6a492b76f3938205ed9d94cd12b81d66feea657d
storage/laravels.json
View file @
9097fac0
{
"server"
:{
"listen_ip"
:
"0.0.0.0"
,
"listen_port"
:
"61009"
,
"socket_type"
:
1
,
"enable_coroutine_runtime"
:
false
,
"server"
:
"LaravelS"
,
"handle_static"
:
false
,
"laravel_base_path"
:
"/home/vagrant/code/ic_server_welfare"
,
"inotify_reload"
:{
"enable"
:
false
,
"watch_path"
:
"/home/vagrant/code/ic_server_welfare"
,
"file_types"
:[
".php"
],
"excluded_dirs"
:[],
"log"
:
true
},
"event_handlers"
:[],
"websocket"
:{
"enable"
:
false
},
"sockets"
:[],
"processes"
:[],
"timer"
:{
"enable"
:
true
,
"jobs"
:[
"App
\\
Jobs
\\
Timer
\\
ResetExchangeSettingsCronJob"
],
"max_wait_time"
:
5
},
"events"
:[],
"swoole_tables"
:[],
"register_providers"
:[],
"cleaners"
:[],
"destroy_controllers"
:{
"enable"
:
false
,
"excluded_list"
:[]},
"swoole"
:{
"daemonize"
:
true
,
"dispatch_mode"
:
2
,
"reactor_num"
:
2
,
"worker_num"
:
2
,
"task_worker_num"
:
2
,
"task_ipc_mode"
:
1
,
"task_max_request"
:
8000
,
"task_tmpdir"
:
"/dev/shm"
,
"max_request"
:
8000
,
"open_tcp_nodelay"
:
true
,
"pid_file"
:
"/home/vagrant/code/ic_server_welfare/storage/laravels.pid"
,
"log_file"
:
"/home/vagrant/code/ic_server_welfare/storage/logs/swoole-2019-10.log"
,
"log_level"
:
4
,
"document_root"
:
"/home/vagrant/code/ic_server_welfare/public"
,
"buffer_output_size"
:
2097152
,
"socket_buffer_size"
:
134217728
,
"package_max_length"
:
4194304
,
"reload_async"
:
true
,
"max_wait_time"
:
60
,
"enable_reuse_port"
:
true
,
"enable_coroutine"
:
false
,
"http_compression"
:
false
},
"enable_gzip"
:
false
,
"process_prefix"
:
"/home/vagrant/code/ic_server_welfare"
,
"ignore_check_pid"
:
false
},
"laravel"
:{
"root_path"
:
"/home/vagrant/code/ic_server_welfare"
,
"static_path"
:
"/home/vagrant/code/ic_server_welfare/public"
,
"cleaners"
:[],
"register_providers"
:[],
"destroy_controllers"
:{
"enable"
:
false
,
"excluded_list"
:[]},
"is_lumen"
:
true
,
"_SERVER"
:{
"LESSOPEN"
:
"| /usr/bin/lesspipe %s"
,
"MAIL"
:
"/var/mail/vagrant"
,
"USER"
:
"vagrant"
,
"SSH_CLIENT"
:
"10.0.2.2 53388 22"
,
"LANGUAGE"
:
"en_US:"
,
"SHLVL"
:
"1"
,
"HOME"
:
"/home/vagrant"
,
"OLDPWD"
:
"/home/vagrant"
,
"SSH_TTY"
:
"/dev/pts/0"
,
"LOGNAME"
:
"vagrant"
,
"_"
:
"/usr/bin/php"
,
"XDG_SESSION_ID"
:
"7"
,
"TERM"
:
"cygwin"
,
"RBENV_SHELL"
:
"bash"
,
"PATH"
:
"/home/vagrant/.composer/vendor/bin:/usr/local/go/bin:/home/vagrant/.rbenv/plugins/ruby-build/bin:/home/vagrant/.rbenv/shims:/home/vagrant/.rbenv/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/home/vagrant/.dotnet/tools"
,
"S_COLORS"
:
"auto"
,
"XDG_RUNTIME_DIR"
:
"/run/user/1000"
,
"LANG"
:
"en_US.UTF-8"
,
"LS_COLORS"
:
"rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36:"
,
"SHELL"
:
"/bin/bash"
,
"LESSCLOSE"
:
"/usr/bin/lesspipe %s %s"
,
"LC_ALL"
:
"en_US.UTF-8"
,
"PWD"
:
"/home/vagrant/code/ic_server_welfare"
,
"SSH_CONNECTION"
:
"10.0.2.2 53388 10.0.2.15 22"
,
"XDG_DATA_DIRS"
:
"/usr/local/share:/usr/share:/var/lib/snapd/desktop"
,
"PHP_SELF"
:
"/home/vagrant/code/ic_server_welfare/artisan"
,
"SCRIPT_NAME"
:
"/home/vagrant/code/ic_server_welfare/artisan"
,
"SCRIPT_FILENAME"
:
"/home/vagrant/code/ic_server_welfare/artisan"
,
"PATH_TRANSLATED"
:
"/home/vagrant/code/ic_server_welfare/artisan"
,
"DOCUMENT_ROOT"
:
""
,
"REQUEST_TIME_FLOAT"
:
1570782597.196257
,
"REQUEST_TIME"
:
1570782597
,
"argv"
:[
"/home/vagrant/code/ic_server_welfare/artisan"
,
"laravels"
,
"config"
,
"--daemonize"
],
"argc"
:
4
,
"APP_ENV"
:
"local"
,
"APP_DEBUG"
:
"true"
,
"APP_KEY"
:
"0uUBt7t4fFIttyqkyLxDhLC7gn9361Yt"
,
"APP_TIMEZONE"
:
"PRC"
,
"DB_CONNECTION"
:
"mysql"
,
"DB_HOST_R"
:
"192.168.2.232"
,
"DB_HOST_W"
:
"192.168.2.232"
,
"DB_PORT"
:
"3306"
,
"DB_DATABASE"
:
"ic_welfare"
,
"DB_USERNAME"
:
"ic_welfare"
,
"DB_PASSWORD"
:
"ic_welfare#zsyM"
,
"DB_PREFIX"
:
"ic_"
,
"IC_DATA_DB_HOST_R"
:
"192.168.2.232"
,
"IC_DATA_DB_HOST_W"
:
"192.168.2.232"
,
"IC_DATA_DB_PORT"
:
"3306"
,
"IC_DATA_DB_DATABASE"
:
"ic_data"
,
"IC_DATA_DB_USERNAME"
:
"ic_data"
,
"IC_DATA_DB_PASSWORD"
:
"ic_data#zsyM"
,
"IC_DATA_DB_PREFIX"
:
"ic_"
,
"CACHE_DRIVER"
:
"file"
,
"QUEUE_DRIVER"
:
"sync"
,
"SYSTEM_CODE"
:
"09"
,
"SYSTEM_NAME"
:
"IC业务助手福利中心服务"
,
"LARAVELS_LISTEN_IP"
:
"0.0.0.0"
,
"LARAVELS_LISTEN_PORT"
:
"61009"
,
"REDIS_HOST"
:
"192.168.1.235"
,
"REDIS_PASSWORD"
:
"icDb29mLy2s"
,
"REDIS_PORT"
:
"6379"
,
"REDIS_READ_HOST"
:
"192.168.1.235"
,
"REDIS_READ_PASSWORD"
:
"icDb29mLy2s"
,
"REDIS_READ_PORT"
:
"6379"
,
"IC_AUTH_API"
:
"http://authapi.icsales.cc"
,
"RobotUrl"
:
"https://oapi.dingtalk.com/robot/send?access_token=a7255513c160f20d65c0c00d939fe88712233bbda0dc520563705bf721072d11"
,
"LARAVELS_TIMER"
:
"true"
,
"wechat_api_url"
:
"https://wechat.icsales.com"
,
"SHELL_VERBOSITY"
:
0
},
"_ENV"
:{
"APP_ENV"
:
"local"
,
"APP_DEBUG"
:
"true"
,
"APP_KEY"
:
"0uUBt7t4fFIttyqkyLxDhLC7gn9361Yt"
,
"APP_TIMEZONE"
:
"PRC"
,
"DB_CONNECTION"
:
"mysql"
,
"DB_HOST_R"
:
"192.168.2.232"
,
"DB_HOST_W"
:
"192.168.2.232"
,
"DB_PORT"
:
"3306"
,
"DB_DATABASE"
:
"ic_welfare"
,
"DB_USERNAME"
:
"ic_welfare"
,
"DB_PASSWORD"
:
"ic_welfare#zsyM"
,
"DB_PREFIX"
:
"ic_"
,
"IC_DATA_DB_HOST_R"
:
"192.168.2.232"
,
"IC_DATA_DB_HOST_W"
:
"192.168.2.232"
,
"IC_DATA_DB_PORT"
:
"3306"
,
"IC_DATA_DB_DATABASE"
:
"ic_data"
,
"IC_DATA_DB_USERNAME"
:
"ic_data"
,
"IC_DATA_DB_PASSWORD"
:
"ic_data#zsyM"
,
"IC_DATA_DB_PREFIX"
:
"ic_"
,
"CACHE_DRIVER"
:
"file"
,
"QUEUE_DRIVER"
:
"sync"
,
"SYSTEM_CODE"
:
"09"
,
"SYSTEM_NAME"
:
"IC业务助手福利中心服务"
,
"LARAVELS_LISTEN_IP"
:
"0.0.0.0"
,
"LARAVELS_LISTEN_PORT"
:
"61009"
,
"REDIS_HOST"
:
"192.168.1.235"
,
"REDIS_PASSWORD"
:
"icDb29mLy2s"
,
"REDIS_PORT"
:
"6379"
,
"REDIS_READ_HOST"
:
"192.168.1.235"
,
"REDIS_READ_PASSWORD"
:
"icDb29mLy2s"
,
"REDIS_READ_PORT"
:
"6379"
,
"IC_AUTH_API"
:
"http://authapi.icsales.cc"
,
"RobotUrl"
:
"https://oapi.dingtalk.com/robot/send?access_token=a7255513c160f20d65c0c00d939fe88712233bbda0dc520563705bf721072d11"
,
"LARAVELS_TIMER"
:
"true"
,
"wechat_api_url"
:
"https://wechat.icsales.com"
,
"SHELL_VERBOSITY"
:
0
}}}
\ No newline at end of file
{
"server"
:{
"listen_ip"
:
"0.0.0.0"
,
"listen_port"
:
"61009"
,
"socket_type"
:
1
,
"enable_coroutine_runtime"
:
false
,
"server"
:
"LaravelS"
,
"handle_static"
:
false
,
"laravel_base_path"
:
"/home/vagrant/code/ic_server_welfare"
,
"inotify_reload"
:{
"enable"
:
false
,
"watch_path"
:
"/home/vagrant/code/ic_server_welfare"
,
"file_types"
:[
".php"
],
"excluded_dirs"
:[],
"log"
:
true
},
"event_handlers"
:[],
"websocket"
:{
"enable"
:
false
},
"sockets"
:[],
"processes"
:[],
"timer"
:{
"enable"
:
true
,
"jobs"
:[
"App
\\
Jobs
\\
Timer
\\
ResetExchangeSettingsCronJob"
],
"max_wait_time"
:
5
},
"events"
:[],
"swoole_tables"
:[],
"register_providers"
:[],
"cleaners"
:[],
"destroy_controllers"
:{
"enable"
:
false
,
"excluded_list"
:[]},
"swoole"
:{
"daemonize"
:
true
,
"dispatch_mode"
:
2
,
"reactor_num"
:
2
,
"worker_num"
:
2
,
"task_worker_num"
:
2
,
"task_ipc_mode"
:
1
,
"task_max_request"
:
8000
,
"task_tmpdir"
:
"/dev/shm"
,
"max_request"
:
8000
,
"open_tcp_nodelay"
:
true
,
"pid_file"
:
"/home/vagrant/code/ic_server_welfare/storage/laravels.pid"
,
"log_file"
:
"/home/vagrant/code/ic_server_welfare/storage/logs/swoole-2019-10.log"
,
"log_level"
:
4
,
"document_root"
:
"/home/vagrant/code/ic_server_welfare/public"
,
"buffer_output_size"
:
2097152
,
"socket_buffer_size"
:
134217728
,
"package_max_length"
:
4194304
,
"reload_async"
:
true
,
"max_wait_time"
:
60
,
"enable_reuse_port"
:
true
,
"enable_coroutine"
:
false
,
"http_compression"
:
false
},
"enable_gzip"
:
false
,
"process_prefix"
:
"/home/vagrant/code/ic_server_welfare"
,
"ignore_check_pid"
:
false
},
"laravel"
:{
"root_path"
:
"/home/vagrant/code/ic_server_welfare"
,
"static_path"
:
"/home/vagrant/code/ic_server_welfare/public"
,
"cleaners"
:[],
"register_providers"
:[],
"destroy_controllers"
:{
"enable"
:
false
,
"excluded_list"
:[]},
"is_lumen"
:
true
,
"_SERVER"
:{
"LESSOPEN"
:
"| /usr/bin/lesspipe %s"
,
"MAIL"
:
"/var/mail/vagrant"
,
"USER"
:
"vagrant"
,
"SSH_CLIENT"
:
"10.0.2.2 51176 22"
,
"LANGUAGE"
:
"en_US:"
,
"SHLVL"
:
"1"
,
"HOME"
:
"/home/vagrant"
,
"OLDPWD"
:
"/home/vagrant/code/ic_server_offer"
,
"SSH_TTY"
:
"/dev/pts/0"
,
"LOGNAME"
:
"vagrant"
,
"_"
:
"/usr/bin/php"
,
"XDG_SESSION_ID"
:
"170"
,
"TERM"
:
"cygwin"
,
"RBENV_SHELL"
:
"bash"
,
"PATH"
:
"/home/vagrant/.composer/vendor/bin:/usr/local/go/bin:/home/vagrant/.rbenv/plugins/ruby-build/bin:/home/vagrant/.rbenv/shims:/home/vagrant/.rbenv/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/home/vagrant/.dotnet/tools"
,
"S_COLORS"
:
"auto"
,
"XDG_RUNTIME_DIR"
:
"/run/user/1000"
,
"LANG"
:
"en_US.UTF-8"
,
"LS_COLORS"
:
"rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36:"
,
"SHELL"
:
"/bin/bash"
,
"LESSCLOSE"
:
"/usr/bin/lesspipe %s %s"
,
"LC_ALL"
:
"en_US.UTF-8"
,
"PWD"
:
"/home/vagrant/code/ic_server_welfare"
,
"SSH_CONNECTION"
:
"10.0.2.2 51176 10.0.2.15 22"
,
"XDG_DATA_DIRS"
:
"/usr/local/share:/usr/share:/var/lib/snapd/desktop"
,
"PHP_SELF"
:
"/home/vagrant/code/ic_server_welfare/artisan"
,
"SCRIPT_NAME"
:
"/home/vagrant/code/ic_server_welfare/artisan"
,
"SCRIPT_FILENAME"
:
"/home/vagrant/code/ic_server_welfare/artisan"
,
"PATH_TRANSLATED"
:
"/home/vagrant/code/ic_server_welfare/artisan"
,
"DOCUMENT_ROOT"
:
""
,
"REQUEST_TIME_FLOAT"
:
1571822393.708642
,
"REQUEST_TIME"
:
1571822393
,
"argv"
:[
"/home/vagrant/code/ic_server_welfare/artisan"
,
"laravels"
,
"config"
,
"--daemonize"
],
"argc"
:
4
,
"APP_ENV"
:
"local"
,
"APP_DEBUG"
:
"true"
,
"APP_KEY"
:
"0uUBt7t4fFIttyqkyLxDhLC7gn9361Yt"
,
"APP_TIMEZONE"
:
"PRC"
,
"DB_CONNECTION"
:
"mysql"
,
"DB_HOST_R"
:
"192.168.2.232"
,
"DB_HOST_W"
:
"192.168.2.232"
,
"DB_PORT"
:
"3306"
,
"DB_DATABASE"
:
"ic_welfare"
,
"DB_USERNAME"
:
"ic_welfare"
,
"DB_PASSWORD"
:
"ic_welfare#zsyM"
,
"DB_PREFIX"
:
"ic_"
,
"IC_DATA_DB_HOST_R"
:
"192.168.2.232"
,
"IC_DATA_DB_HOST_W"
:
"192.168.2.232"
,
"IC_DATA_DB_PORT"
:
"3306"
,
"IC_DATA_DB_DATABASE"
:
"ic_data"
,
"IC_DATA_DB_USERNAME"
:
"ic_data"
,
"IC_DATA_DB_PASSWORD"
:
"ic_data#zsyM"
,
"IC_DATA_DB_PREFIX"
:
"ic_"
,
"CACHE_DRIVER"
:
"file"
,
"QUEUE_DRIVER"
:
"sync"
,
"SYSTEM_CODE"
:
"09"
,
"SYSTEM_NAME"
:
"IC业务助手福利中心服务"
,
"LARAVELS_LISTEN_IP"
:
"0.0.0.0"
,
"LARAVELS_LISTEN_PORT"
:
"61009"
,
"REDIS_HOST"
:
"192.168.1.235"
,
"REDIS_PASSWORD"
:
"icDb29mLy2s"
,
"REDIS_PORT"
:
"6379"
,
"REDIS_READ_HOST"
:
"192.168.1.235"
,
"REDIS_READ_PASSWORD"
:
"icDb29mLy2s"
,
"REDIS_READ_PORT"
:
"6379"
,
"IC_AUTH_API"
:
"http://authapi.icsales.cc"
,
"RobotUrl"
:
"https://oapi.dingtalk.com/robot/send?access_token=a7255513c160f20d65c0c00d939fe88712233bbda0dc520563705bf721072d11"
,
"LARAVELS_TIMER"
:
"true"
,
"wechat_api_url"
:
"https://wechat.icsales.com"
,
"SHELL_VERBOSITY"
:
0
},
"_ENV"
:{
"APP_ENV"
:
"local"
,
"APP_DEBUG"
:
"true"
,
"APP_KEY"
:
"0uUBt7t4fFIttyqkyLxDhLC7gn9361Yt"
,
"APP_TIMEZONE"
:
"PRC"
,
"DB_CONNECTION"
:
"mysql"
,
"DB_HOST_R"
:
"192.168.2.232"
,
"DB_HOST_W"
:
"192.168.2.232"
,
"DB_PORT"
:
"3306"
,
"DB_DATABASE"
:
"ic_welfare"
,
"DB_USERNAME"
:
"ic_welfare"
,
"DB_PASSWORD"
:
"ic_welfare#zsyM"
,
"DB_PREFIX"
:
"ic_"
,
"IC_DATA_DB_HOST_R"
:
"192.168.2.232"
,
"IC_DATA_DB_HOST_W"
:
"192.168.2.232"
,
"IC_DATA_DB_PORT"
:
"3306"
,
"IC_DATA_DB_DATABASE"
:
"ic_data"
,
"IC_DATA_DB_USERNAME"
:
"ic_data"
,
"IC_DATA_DB_PASSWORD"
:
"ic_data#zsyM"
,
"IC_DATA_DB_PREFIX"
:
"ic_"
,
"CACHE_DRIVER"
:
"file"
,
"QUEUE_DRIVER"
:
"sync"
,
"SYSTEM_CODE"
:
"09"
,
"SYSTEM_NAME"
:
"IC业务助手福利中心服务"
,
"LARAVELS_LISTEN_IP"
:
"0.0.0.0"
,
"LARAVELS_LISTEN_PORT"
:
"61009"
,
"REDIS_HOST"
:
"192.168.1.235"
,
"REDIS_PASSWORD"
:
"icDb29mLy2s"
,
"REDIS_PORT"
:
"6379"
,
"REDIS_READ_HOST"
:
"192.168.1.235"
,
"REDIS_READ_PASSWORD"
:
"icDb29mLy2s"
,
"REDIS_READ_PORT"
:
"6379"
,
"IC_AUTH_API"
:
"http://authapi.icsales.cc"
,
"RobotUrl"
:
"https://oapi.dingtalk.com/robot/send?access_token=a7255513c160f20d65c0c00d939fe88712233bbda0dc520563705bf721072d11"
,
"LARAVELS_TIMER"
:
"true"
,
"wechat_api_url"
:
"https://wechat.icsales.com"
,
"SHELL_VERBOSITY"
:
0
}}}
\ No newline at end of file
storage/laravels.pid
View file @
9097fac0
2930
\ No newline at end of file
18312
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment