Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
P
physical
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
alpha
physical
Commits
01f2957b
Commit
01f2957b
authored
Oct 20, 2019
by
谢祁峰
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of git.wanmeizhensuo.com:alpha/physical into xqf
parents
106e9708
f200946b
Show whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
29 additions
and
17 deletions
+29
-17
crontab.py
crontab.py
+3
-3
timelib.py
libs/timelib.py
+1
-1
celery_task_router.py
physical/celery_task_router.py
+2
-0
auto_click_per_1d_by_post.py
vest/click/auto_click_per_1d_by_post.py
+2
-1
auto_click_per_2h_by_post.py
vest/click/auto_click_per_2h_by_post.py
+3
-2
auto_follow_per_1d_by_post.py
vest/follow/auto_follow_per_1d_by_post.py
+2
-1
auto_follow_per_1d_by_regist.py
vest/follow/auto_follow_per_1d_by_regist.py
+2
-1
auto_follow_per_2h_by_post_and_regist.py
vest/follow/auto_follow_per_2h_by_post_and_regist.py
+3
-2
auto_reply_per_1d_to_pictorial.py
vest/reply/auto_reply_per_1d_to_pictorial.py
+2
-1
auto_reply_per_1d_to_topic.py
vest/reply/auto_reply_per_1d_to_topic.py
+4
-2
auto_reply_per_2h_to_topic.py
vest/reply/auto_reply_per_2h_to_topic.py
+5
-3
No files found.
crontab.py
View file @
01f2957b
...
...
@@ -4,7 +4,7 @@ ontime_list = [
"0 9 * * * source /srv/envs/physical/bin/activate && python /data/log/physical/app/crontab.py"
,
"10 9 * * * source /srv/envs/physical/bin/activate && python /data/log/physical/app/crontabs.py"
,
"0 9 * * * sh /data/log/cybertron/app/statistics_query.sh > /data/log/cybertron/app/statistics_query.log"
,
"54 */
2
* * * source /srv/envs/physical/bin/activate && cd /srv/apps/physical && python manage.py trans2es_mapping2es -m auto_click_per_2h_by_post"
,
"54 */
1
* * * source /srv/envs/physical/bin/activate && cd /srv/apps/physical && python manage.py trans2es_mapping2es -m auto_click_per_2h_by_post"
,
# "*/5 * * * * source /srv/envs/physical/bin/activate && cd /srv/apps/physical && python manage.py trans2es_mapping2es -m true_click_one",
# "02,12,22,32,42,52 * * * * source /srv/envs/physical/bin/activate && cd /srv/apps/physical && python manage.py trans2es_mapping2es-m true_click_two",
# "00,10,20,30,40,50 * * * * source /srv/envs/physical/bin/activate && cd /srv/apps/physical && python manage.py trans2es_mapping2es -m true_click_three",
...
...
@@ -16,11 +16,11 @@ ontime_list = [
"0 10 * * 3 source /srv/envs/physical/bin/activate && cd /srv/apps/physical && python manage.py trans2es_mapping2es -m auto_lunch_app"
,
"30 10 * * 3 source /srv/envs/physical/bin/activate && cd /srv/apps/physical && python manage.py trans2es_mapping2es -m auto_lunch_app2"
,
# "*/5 * * * 1 source /srv/envs/physical/bin/activate && cd /srv/apps/physical && python manage.py trans2es_mapping2es -m auto_follow_per_5m_by_followed",
"1 */
2
* * * source /srv/envs/physical/bin/activate && cd /srv/apps/physical && python manage.py trans2es_mapping2es -m auto_follow_per_2h_by_post_and_regist"
,
"1 */
1
* * * source /srv/envs/physical/bin/activate && cd /srv/apps/physical && python manage.py trans2es_mapping2es -m auto_follow_per_2h_by_post_and_regist"
,
"0 9 * * * source /srv/envs/physical/bin/activate && cd /srv/apps/physical && python manage.py trans2es_mapping2es -m get_login_session"
,
"0 0 * * 3 source /srv/envs/physical/bin/activate && cd /srv/apps/physical && python manage.py trans2es_mapping2es -m get_user_id"
,
# "0 14,18,22 * * * source /srv/envs/physical/bin/activate && cd /srv/apps/physical && python manage.py trans2es_mapping2es -m principal_online_comment1",
"25 */
2
* * * source /srv/envs/physical/bin/activate && cd /srv/apps/physical && python manage.py trans2es_mapping2es -m auto_reply_per_2h_to_topic"
,
"25 */
1
* * * source /srv/envs/physical/bin/activate && cd /srv/apps/physical && python manage.py trans2es_mapping2es -m auto_reply_per_2h_to_topic"
,
"0 9 * * * source /srv/envs/physical/bin/activate && cd /srv/apps/physical && python manage.py trans2es_mapping2es -m auto_click_per_1d_by_post"
,
"1 9 * * * source /srv/envs/physical/bin/activate && cd /srv/apps/physical && python manage.py trans2es_mapping2es -m auto_follow_per_1d_by_regist"
,
"2 9 * * * source /srv/envs/physical/bin/activate && cd /srv/apps/physical && python manage.py trans2es_mapping2es -m auto_follow_per_1d_by_post"
,
...
...
libs/timelib.py
View file @
01f2957b
...
...
@@ -27,7 +27,7 @@ def get_rand_time(hourlow=0, hourup=13, minutelow=0, minuteup=60):
hours
=
random
.
randint
(
hourlow
,
hourup
)
minutes
=
random
.
randint
(
minutelow
,
minuteup
)
# todo redis会自动给加8个小时,所以这边先写死减少8小时
now_time
=
NOW
+
timedelta
(
hours
=
hours
,
minutes
=
minutes
)
-
timedelta
(
hours
=
8
)
now_time
=
NOW
+
timedelta
(
hours
=
hours
,
minutes
=
minutes
)
time
=
eta_2_push_time
(
now_time
.
strftime
(
"
%
Y-
%
m-
%
d
%
H:
%
M:
%
S"
))
print
(
datetime
.
fromtimestamp
(
time
,
pytz
.
timezone
(
'Asia/Shanghai'
)))
return
datetime
.
fromtimestamp
(
time
,
pytz
.
timezone
(
'Asia/Shanghai'
))
...
...
physical/celery_task_router.py
View file @
01f2957b
...
...
@@ -9,6 +9,8 @@ class CeleryTaskRouter(object):
queue_task_map
=
{
"tapir-alpha"
:
[
'injection.data_sync.tasks.write_to_es'
,
],
"vest"
:
[
'vest.request.auto_request.click'
,
'vest.request.auto_request.reply'
,
'vest.request.auto_request.follow'
,
...
...
vest/click/auto_click_per_1d_by_post.py
View file @
01f2957b
...
...
@@ -42,7 +42,8 @@ def batch_handle(auto_click_list):
try
:
cookies
=
login
()
if
cookies
is
not
None
:
click
.
apply_async
(
args
=
(
cookies
,
topic_id
),
eta
=
get_rand_time
())
time
=
get_rand_time
()
click
.
apply_async
(
args
=
(
cookies
,
topic_id
),
eta
=
time
)
# click(cookies, topic_id)
except
:
pass
...
...
vest/click/auto_click_per_2h_by_post.py
View file @
01f2957b
...
...
@@ -44,7 +44,8 @@ def batch_handle(auto_click_list):
cookies
=
login
()
if
cookies
is
not
None
:
# click(cookies, topic_id)
click
.
apply_async
(
args
=
(
cookies
,
topic_id
),
eta
=
get_rand_time
(
hourup
=
1
))
time
=
get_rand_time
(
hourup
=
0
)
click
.
apply_async
(
args
=
(
cookies
,
topic_id
),
eta
=
time
)
except
:
pass
...
...
@@ -54,7 +55,7 @@ def auto_click_per_2h_by_post():
auto_click_list
=
[]
try
:
# 发帖2小时内:[1-3]个点赞
numtime1
,
numtime2
=
time_conv_hour
(
0
,
2
)
numtime1
,
numtime2
=
time_conv_hour
(
0
,
1
)
topic_ids
=
get_commnet_id
(
numtime2
,
numtime1
,
content_level_low
=
0
,
content_level_top
=
6
)
for
topic_id
in
topic_ids
:
click_num
=
random
.
randint
(
1
,
3
)
...
...
vest/follow/auto_follow_per_1d_by_post.py
View file @
01f2957b
...
...
@@ -30,7 +30,8 @@ def batch_handle(auto_follow_list):
cookies
=
login
()
if
cookies
is
not
None
:
# follow(cookies, user_id)
follow
.
apply_async
(
args
=
(
cookies
,
user_id
),
eta
=
get_rand_time
())
time
=
get_rand_time
()
follow
.
apply_async
(
args
=
(
cookies
,
user_id
),
eta
=
time
)
except
:
pass
...
...
vest/follow/auto_follow_per_1d_by_regist.py
View file @
01f2957b
...
...
@@ -29,7 +29,8 @@ def batch_handle(auto_follow_list):
cookies
=
login
()
if
cookies
is
not
None
:
# follow(cookies, user_id)
follow
.
apply_async
(
args
=
(
cookies
,
user_id
),
eta
=
get_rand_time
())
time
=
get_rand_time
()
follow
.
apply_async
(
args
=
(
cookies
,
user_id
),
eta
=
time
)
except
:
pass
...
...
vest/follow/auto_follow_per_2h_by_post_and_regist.py
View file @
01f2957b
...
...
@@ -41,7 +41,8 @@ def batch_handle(auto_follow_list):
cookies
=
login
()
if
cookies
is
not
None
:
# follow(cookies, user_id)
follow
.
apply_async
(
args
=
(
cookies
,
user_id
),
eta
=
get_rand_time
(
hourup
=
1
))
time
=
get_rand_time
(
hourup
=
0
)
follow
.
apply_async
(
args
=
(
cookies
,
user_id
),
eta
=
time
)
except
:
pass
...
...
@@ -52,7 +53,7 @@ def auto_follow_per_2h_by_post_and_regist():
auto_follow_list
=
[]
try
:
# 发帖,注册后2小时内:[1-3]个粉丝
numtime1
,
numtime2
=
time_conv_hour
(
0
,
2
)
numtime1
,
numtime2
=
time_conv_hour
(
0
,
1
)
user_ids
=
get_commnet_id
(
numtime2
,
numtime1
,
content_level_low
=
0
,
content_level_top
=
6
)
for
user_id
in
user_ids
:
follow_num
=
random
.
randint
(
1
,
3
)
...
...
vest/reply/auto_reply_per_1d_to_pictorial.py
View file @
01f2957b
...
...
@@ -57,7 +57,8 @@ def batch_handle(pictorial_id_list):
if
cookies
is
not
None
:
comment
=
judge_pictorial_info_get_comment
(
pictorial_id
)
# pictorial_reply(cookies, pictorial_id, comment)
pictorial_reply
.
apply_async
(
args
=
(
cookies
,
pictorial_id
,
comment
),
eta
=
get_rand_time
())
time
=
get_rand_time
()
pictorial_reply
.
apply_async
(
args
=
(
cookies
,
pictorial_id
,
comment
),
eta
=
time
)
except
:
pass
...
...
vest/reply/auto_reply_per_1d_to_topic.py
View file @
01f2957b
...
...
@@ -35,14 +35,16 @@ def batch_handle(topic_id_list):
comment
=
judge_topic_info_get_comment
(
topic_id
)
if
comment
:
# reply(cookies, topic_id, comment)
reply
.
apply_async
(
args
=
(
cookies
,
topic_id
,
comment
),
eta
=
get_rand_time
())
time
=
get_rand_time
()
reply
.
apply_async
(
args
=
(
cookies
,
topic_id
,
comment
),
eta
=
time
)
else
:
comment1
,
comment2
=
get_answer_data
()
response
=
reply_answer
(
cookies
,
topic_id
,
comment1
)
response
=
json
.
loads
(
response
)
cookies
=
login
()
reply_id
=
response
[
"data"
][
"id"
]
reply2
.
apply_async
(
args
=
(
cookies
,
topic_id
,
comment2
,
reply_id
),
eta
=
get_rand_time
())
time
=
get_rand_time
()
reply2
.
apply_async
(
args
=
(
cookies
,
topic_id
,
comment2
,
reply_id
),
eta
=
time
)
...
...
vest/reply/auto_reply_per_2h_to_topic.py
View file @
01f2957b
...
...
@@ -34,14 +34,16 @@ def batch_handle(topic_id_list):
comment
=
judge_topic_info_get_comment
(
topic_id
)
if
comment
:
# reply(cookies, topic_id, comment)
reply
.
apply_async
(
args
=
(
cookies
,
topic_id
,
comment
),
eta
=
get_rand_time
(
hourup
=
1
))
time
=
get_rand_time
(
hourup
=
0
)
reply
.
apply_async
(
args
=
(
cookies
,
topic_id
,
comment
),
eta
=
time
)
else
:
comment1
,
comment2
=
get_answer_data
()
response
=
reply_answer
(
cookies
,
topic_id
,
comment1
)
response
=
json
.
loads
(
response
)
cookies
=
login
()
reply_id
=
response
[
"data"
][
"id"
]
reply2
.
apply_async
(
args
=
(
cookies
,
topic_id
,
comment2
,
reply_id
),
eta
=
get_rand_time
(
hourup
=
1
))
time
=
get_rand_time
(
hourup
=
0
)
reply2
.
apply_async
(
args
=
(
cookies
,
topic_id
,
comment2
,
reply_id
),
eta
=
time
)
except
:
logging_exception
()
...
...
@@ -51,7 +53,7 @@ def batch_handle(topic_id_list):
def
auto_reply_per_2h_to_topic
():
topic_id_list
=
[]
try
:
numtime1
,
numtime2
=
time_conv_hour
(
0
,
2
)
numtime1
,
numtime2
=
time_conv_hour
(
0
,
1
)
topic_ids
=
get_data
(
numtime1
,
numtime2
)
for
topic_id
in
topic_ids
:
random_num
=
random
.
randint
(
1
,
2
)
...
...
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