Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
C
crawler.vmusicchart.vn
Overview
Overview
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
Phạm Văn Đoan
crawler.vmusicchart.vn
Commits
d43301a1
Commit
d43301a1
authored
Apr 04, 2020
by
Phạm Văn Đoan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cập nhật xử lý BXH tháng
parent
fe3d44bd
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
49 additions
and
45 deletions
+49
-45
CalculateReportCommand.php
app/Console/Commands/CalculateReportCommand.php
+49
-45
No files found.
app/Console/Commands/CalculateReportCommand.php
View file @
d43301a1
...
...
@@ -220,67 +220,71 @@ class CalculateReportCommand extends Command
}
break
;
case
'monthly'
:
// Chỉ thực hiện nếu là ngày 21 hàng tháng, phải thực hiện t
rước
21h
if
(
date
(
'd'
)
==
21
)
{
// Chỉ thực hiện nếu là ngày 21 hàng tháng, phải thực hiện t
ừ 5h->
21h
if
(
date
(
'd'
)
==
21
&&
date
(
'H'
)
>=
5
)
{
// Ghi log xem có gọi không
Crontjob
::
create
([
'message'
=>
'CalculateReportCommand is called ('
.
$type
.
')'
]);
// Check xem đã insert vào report
s_views_monthly
chưa
// Check xem đã insert vào report
_views_monthly_new
chưa
$check
=
MonthlyReport
::
where
(
'month'
,
date
(
'm'
))
->
where
(
'year'
,
date
(
'Y'
))
->
count
();
if
(
$check
>=
100
){
echo
"
\n
- Báo cáo đã được tổng hợp trước đó."
;
return
false
;
}
$monthly_data
=
MonthlyReportView
::
select
(
'*'
)
->
take
(
100
)
->
get
()
->
toArray
();
if
(
count
(
$monthly_data
)
>
0
)
{
$monthly_report
=
[];
foreach
(
$monthly_data
as
$key
=>
$monthly
)
{
$monthly_report
[
$key
][
'month'
]
=
date
(
'm'
);
$monthly_report
[
$key
][
'year'
]
=
date
(
'Y'
);
$monthly_report
[
$key
][
'track_id'
]
=
$monthly
[
'track_id'
];
$monthly_report
[
$key
][
'views_zing'
]
=
$monthly
[
'month_zing'
];
$monthly_report
[
$key
][
'views_nct'
]
=
$monthly
[
'month_nct'
];
$monthly_report
[
$key
][
'views_keeng'
]
=
$monthly
[
'month_keeng'
];
echo
"
\n
- BXH Tháng đã được tổng hợp trước đó."
;
}
else
{
$monthly_data
=
MonthlyReportView
::
select
(
'*'
)
->
take
(
100
)
->
get
()
->
toArray
();
if
(
count
(
$monthly_data
)
>
0
&&
$monthly_data
[
0
][
'total_point'
]
>
0
)
{
echo
"
\n
- Bắt đầu xử lý BXH Tháng..."
;
$monthly_report
=
[];
foreach
(
$monthly_data
as
$key
=>
$monthly
)
{
$monthly_report
[
$key
][
'month'
]
=
date
(
'm'
);
$monthly_report
[
$key
][
'year'
]
=
date
(
'Y'
);
$monthly_report
[
$key
][
'track_id'
]
=
$monthly
[
'track_id'
];
$monthly_report
[
$key
][
'views_zing'
]
=
$monthly
[
'month_zing'
];
$monthly_report
[
$key
][
'views_nct'
]
=
$monthly
[
'month_nct'
];
$monthly_report
[
$key
][
'views_keeng'
]
=
$monthly
[
'month_keeng'
];
$monthly_report
[
$key
][
'point_zing'
]
=
$monthly
[
'point_zing'
];
$monthly_report
[
$key
][
'point_nct'
]
=
$monthly
[
'point_nct'
];
$monthly_report
[
$key
][
'point_keeng'
]
=
$monthly
[
'point_keeng'
];
$monthly_report
[
$key
][
'total_point'
]
=
$monthly
[
'total_point'
];
$monthly_report
[
$key
][
'order'
]
=
$key
+
1
;
$monthly_report
[
$key
][
'created_at'
]
=
Carbon
::
now
();
$monthly_report
[
$key
][
'updated_at'
]
=
Carbon
::
now
();
}
$monthly_report
[
$key
][
'point_zing'
]
=
$monthly
[
'point_zing'
];
$monthly_report
[
$key
][
'point_nct'
]
=
$monthly
[
'point_nct'
]
;
$monthly_report
[
$key
][
'point_keeng'
]
=
$monthly
[
'point_keeng'
];
if
(
count
(
$monthly_report
)
>
0
)
{
DB
::
table
(
Constants
::
TABLE_REPORT_VIEWS_MONTHLY_NEW
)
->
insert
(
$monthly_report
)
;
}
$monthly_report
[
$key
][
'total_point'
]
=
$monthly
[
'total_point'
];
$monthly_report
[
$key
][
'order'
]
=
$key
+
1
;
// Check xem đã insert chưa
$check_again
=
MonthlyReport
::
where
(
'month'
,
date
(
'm'
))
->
where
(
'year'
,
date
(
'Y'
))
->
count
();
$monthly_report
[
$key
][
'created_at'
]
=
Carbon
::
now
();
$monthly_report
[
$key
][
'updated_at'
]
=
Carbon
::
now
();
}
if
(
count
(
$monthly_report
)
>
0
)
{
DB
::
table
(
Constants
::
TABLE_REPORTS_VIEWS_MONTHLY
)
->
insert
(
$monthly_report
);
}
// Check xem đã insert chưa
$check_again
=
MonthlyReport
::
where
(
'month'
,
date
(
'm'
))
->
where
(
'year'
,
date
(
'Y'
))
->
count
();
if
(
$check_again
>=
100
)
{
echo
"
\n
- Đã lưu dữ liệu báo cáo và bắt đầu reset lượt nghe tháng."
;
// Reset số lượt nghe tháng về 0 trong bảng crawler_listens
DB
::
table
(
Constants
::
TABLE_CRAWLER_LISTENS
)
->
update
([
'month_zing'
=>
0
,
'month_nct'
=>
0
,
'month_nhacvn'
=>
0
,
'month_keeng'
=>
0
]);
echo
"
\n
- Đã reset lượt nghe tháng."
;
if
(
$check_again
>=
100
)
{
echo
"
\n
- Đã lưu dữ liệu BXH Tháng và bắt đầu Reset lượt nghe tháng."
;
// Reset số lượt nghe tháng về 0 trong bảng crawler_listens
DB
::
table
(
Constants
::
TABLE_CRAWLER_LISTENS
)
->
update
([
'month_zing'
=>
0
,
'month_nct'
=>
0
,
'month_nhacvn'
=>
0
,
'month_keeng'
=>
0
]);
echo
"
\n
- Đã reset lượt nghe tháng."
;
}
}
}
}
else
{
echo
"
\n
- Ngày thực hiện báo cáo tháng phải là ngày 21."
;
return
false
;
echo
"
\n
- Ngày thực hiện BXH Tháng phải là ngày 21."
;
}
break
;
}
...
...
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