2016-05-02 14:23:22 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Pony.fm - A community for pony fan music.
|
|
|
|
* Copyright (C) 2015 Peter Deltchev
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Poniverse\Ponyfm\Http\Controllers\Api\Web;
|
|
|
|
|
|
|
|
use Illuminate\Database\Eloquent\ModelNotFoundException;
|
|
|
|
use Poniverse\Ponyfm\Http\Controllers\ApiControllerBase;
|
|
|
|
use Poniverse\Ponyfm\Models\Track;
|
|
|
|
use Auth;
|
|
|
|
use DB;
|
|
|
|
use Response;
|
2016-05-03 14:01:50 +02:00
|
|
|
use Carbon\Carbon;
|
2016-05-02 14:23:22 +02:00
|
|
|
|
|
|
|
class StatsController extends ApiControllerBase
|
|
|
|
{
|
|
|
|
public function getTrackStatsHourly($id)
|
|
|
|
{
|
2016-05-04 01:50:59 +02:00
|
|
|
$query = DB::table('resource_log_items')
|
|
|
|
->selectRaw('created_at AS time, COUNT(1) AS `plays`')
|
|
|
|
->where('track_id', '=', $id)
|
|
|
|
->where('log_type', '=', 3)
|
|
|
|
->whereRaw('`created_at` > now() - INTERVAL 1 DAY')
|
|
|
|
->groupBy('created_at')
|
|
|
|
->get();
|
2016-05-03 14:01:50 +02:00
|
|
|
|
|
|
|
$now = Carbon::now();
|
|
|
|
$calcArray = array();
|
|
|
|
$output = array();
|
|
|
|
|
|
|
|
foreach($query as $item) {
|
|
|
|
$playDate = new Carbon($item->time);
|
2016-05-04 00:20:38 +02:00
|
|
|
$key = $playDate->diffInHours($now);
|
2016-05-03 14:01:50 +02:00
|
|
|
if (array_key_exists($key, $calcArray)) {
|
|
|
|
$calcArray[$key] += $item->plays;
|
|
|
|
} else {
|
|
|
|
$calcArray[$key] = $item->plays;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-04 00:20:38 +02:00
|
|
|
// Get the first key in the array (oldest play)
|
|
|
|
reset($calcArray);
|
2016-05-04 02:08:59 +02:00
|
|
|
$lastKey = (int) key($calcArray);
|
2016-05-04 00:20:38 +02:00
|
|
|
|
|
|
|
for ($i = 0; $i < $lastKey; $i++) {
|
|
|
|
if (!isset($calcArray[$i])) {
|
|
|
|
$calcArray[$i] = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
krsort($calcArray);
|
|
|
|
|
2016-05-03 14:01:50 +02:00
|
|
|
// Covert calcArray into output we can understand
|
|
|
|
foreach($calcArray as $hour => $plays) {
|
2016-05-04 02:08:59 +02:00
|
|
|
$set = [
|
|
|
|
'hour' => $hour . ' ' . str_plural('hour', $hour),
|
|
|
|
'plays' => $plays
|
|
|
|
];
|
2016-05-03 14:01:50 +02:00
|
|
|
array_push($output, $set);
|
|
|
|
}
|
|
|
|
|
2016-05-03 21:30:57 +02:00
|
|
|
return Response::json(['playStats' => $output, 'type' => 'Hourly'], 200);
|
2016-05-03 14:01:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public function getTrackStatsDaily($id)
|
|
|
|
{
|
2016-05-04 01:50:59 +02:00
|
|
|
$query = DB::table('resource_log_items')
|
|
|
|
->selectRaw('created_at AS time, COUNT(1) AS `plays`')
|
|
|
|
->where('track_id', '=', $id)
|
|
|
|
->where('log_type', '=', 3)
|
|
|
|
->whereRaw('`created_at` > now() - INTERVAL 1 MONTH')
|
|
|
|
->groupBy('created_at')
|
|
|
|
->get();
|
2016-05-03 14:01:50 +02:00
|
|
|
|
|
|
|
$now = Carbon::now();
|
|
|
|
$calcArray = array();
|
|
|
|
$output = array();
|
|
|
|
|
|
|
|
foreach($query as $item) {
|
|
|
|
$playDate = new Carbon($item->time);
|
2016-05-04 00:20:38 +02:00
|
|
|
$key = $playDate->diffInDays($now);
|
2016-05-03 14:01:50 +02:00
|
|
|
if (array_key_exists($key, $calcArray)) {
|
|
|
|
$calcArray[$key] += $item->plays;
|
|
|
|
} else {
|
|
|
|
$calcArray[$key] = $item->plays;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-04 00:20:38 +02:00
|
|
|
// Get the first key in the array (oldest play)
|
|
|
|
reset($calcArray);
|
2016-05-04 02:08:59 +02:00
|
|
|
$lastKey = (int) key($calcArray);
|
2016-05-04 00:20:38 +02:00
|
|
|
|
|
|
|
for ($i = 0; $i < $lastKey; $i++) {
|
|
|
|
if (!isset($calcArray[$i])) {
|
|
|
|
$calcArray[$i] = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
krsort($calcArray);
|
|
|
|
|
2016-05-03 14:01:50 +02:00
|
|
|
// Covert calcArray into output we can understand
|
|
|
|
foreach($calcArray as $days => $plays) {
|
2016-05-04 02:08:59 +02:00
|
|
|
$set = [
|
|
|
|
'days' => $days . ' ' . str_plural('day', $days),
|
|
|
|
'plays' => $plays
|
|
|
|
];
|
2016-05-03 14:01:50 +02:00
|
|
|
array_push($output, $set);
|
|
|
|
}
|
|
|
|
|
2016-05-03 21:30:57 +02:00
|
|
|
return Response::json(['playStats' => $output, 'type' => 'Daily'], 200);
|
2016-05-03 14:01:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public function getTrackStats($id) {
|
2016-05-02 14:23:22 +02:00
|
|
|
// Get track to check if it exists
|
|
|
|
// and if we are allowed to view it.
|
|
|
|
// In the future we could do something
|
|
|
|
// with this data, not sure.
|
|
|
|
try {
|
|
|
|
$track = Track::findOrFail($id);
|
|
|
|
} catch (ModelNotFoundException $e) {
|
|
|
|
return $this->notFound('Track not found!');
|
|
|
|
}
|
|
|
|
|
|
|
|
// Do we have permission to view this track?
|
|
|
|
if (!$track->canView(Auth::user()))
|
|
|
|
return $this->notFound('Track not found!');
|
|
|
|
|
2016-05-03 14:01:50 +02:00
|
|
|
// Run one of the functions depending on
|
|
|
|
// how old the track is
|
|
|
|
$now = Carbon::now();
|
|
|
|
$trackDate = $track->published_at;
|
2016-05-03 00:25:26 +02:00
|
|
|
|
2016-05-03 14:01:50 +02:00
|
|
|
if ($trackDate->diffInDays($now) >= 1) {
|
|
|
|
return $this->getTrackStatsDaily($id);
|
2016-05-04 02:08:59 +02:00
|
|
|
|
|
|
|
return $this->getTrackStatsHourly($id);
|
2016-05-02 14:23:22 +02:00
|
|
|
}
|
|
|
|
}
|