2017-08-27 04:44:53 +09:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
|
|
|
|
use App\Ejaculation;
|
|
|
|
use App\User;
|
|
|
|
use Carbon\Carbon;
|
|
|
|
use Illuminate\Http\Request;
|
|
|
|
use Illuminate\Support\Facades\Auth;
|
|
|
|
use Illuminate\Support\Facades\DB;
|
|
|
|
|
|
|
|
class UserController extends Controller
|
|
|
|
{
|
2019-02-26 22:46:40 +09:00
|
|
|
public function redirectMypage()
|
|
|
|
{
|
|
|
|
return redirect()->route('user.profile', ['name' => auth()->user()->name]);
|
|
|
|
}
|
2017-08-27 04:44:53 +09:00
|
|
|
|
|
|
|
public function profile($name)
|
|
|
|
{
|
|
|
|
$user = User::where('name', $name)->first();
|
|
|
|
if (empty($user)) {
|
|
|
|
abort(404);
|
|
|
|
}
|
|
|
|
|
|
|
|
// チェックインの取得
|
2019-01-15 00:05:01 +09:00
|
|
|
$query = Ejaculation::select(DB::raw(
|
|
|
|
<<<'SQL'
|
2017-11-03 17:48:58 +09:00
|
|
|
id,
|
2017-11-05 01:26:52 +09:00
|
|
|
ejaculated_date,
|
2017-08-27 04:44:53 +09:00
|
|
|
note,
|
|
|
|
is_private,
|
2019-09-07 19:57:44 +09:00
|
|
|
is_too_sensitive,
|
2018-01-05 00:26:48 +09:00
|
|
|
link,
|
2017-08-27 04:44:53 +09:00
|
|
|
to_char(lead(ejaculated_date, 1, NULL) OVER (ORDER BY ejaculated_date DESC), 'YYYY/MM/DD HH24:MI') AS before_date,
|
|
|
|
to_char(ejaculated_date - (lead(ejaculated_date, 1, NULL) OVER (ORDER BY ejaculated_date DESC)), 'FMDDD日 FMHH24時間 FMMI分') AS ejaculated_span
|
|
|
|
SQL
|
|
|
|
))
|
|
|
|
->where('user_id', $user->id);
|
|
|
|
if (!Auth::check() || $user->id !== Auth::id()) {
|
|
|
|
$query = $query->where('is_private', false);
|
|
|
|
}
|
|
|
|
$ejaculations = $query->orderBy('ejaculated_date', 'desc')
|
2018-01-08 10:28:12 +09:00
|
|
|
->with('tags')
|
2019-04-05 23:10:26 +09:00
|
|
|
->withLikes()
|
2017-08-27 04:44:53 +09:00
|
|
|
->paginate(20);
|
|
|
|
|
2018-06-09 00:30:41 +09:00
|
|
|
// よく使っているタグ
|
|
|
|
$tagsQuery = DB::table('ejaculations')
|
|
|
|
->join('ejaculation_tag', 'ejaculations.id', '=', 'ejaculation_tag.ejaculation_id')
|
|
|
|
->join('tags', 'ejaculation_tag.tag_id', '=', 'tags.id')
|
|
|
|
->selectRaw('tags.name, count(*) as count')
|
|
|
|
->where('ejaculations.user_id', $user->id);
|
|
|
|
if (!Auth::check() || $user->id !== Auth::id()) {
|
|
|
|
$tagsQuery = $tagsQuery->where('ejaculations.is_private', false);
|
|
|
|
}
|
|
|
|
$tags = $tagsQuery->groupBy('tags.name')
|
|
|
|
->orderBy('count', 'desc')
|
|
|
|
->limit(10)
|
|
|
|
->get();
|
|
|
|
|
|
|
|
return view('user.profile')->with(compact('user', 'ejaculations', 'tags'));
|
2017-11-05 01:26:52 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
public function stats($name)
|
|
|
|
{
|
|
|
|
$user = User::where('name', $name)->first();
|
|
|
|
if (empty($user)) {
|
|
|
|
abort(404);
|
2017-08-27 04:44:53 +09:00
|
|
|
}
|
|
|
|
|
2019-03-30 13:29:55 +09:00
|
|
|
$dateUntil = now()->addMonth()->startOfMonth();
|
|
|
|
|
2019-01-15 00:05:01 +09:00
|
|
|
$groupByDay = Ejaculation::select(DB::raw(
|
|
|
|
<<<'SQL'
|
2017-11-07 00:22:40 +09:00
|
|
|
to_char(ejaculated_date, 'YYYY/MM/DD') AS "date",
|
|
|
|
count(*) AS "count"
|
|
|
|
SQL
|
|
|
|
))
|
|
|
|
->where('user_id', $user->id)
|
2019-03-30 13:29:55 +09:00
|
|
|
->where('ejaculated_date', '<', $dateUntil)
|
2017-11-07 00:22:40 +09:00
|
|
|
->groupBy(DB::raw("to_char(ejaculated_date, 'YYYY/MM/DD')"))
|
|
|
|
->orderBy(DB::raw("to_char(ejaculated_date, 'YYYY/MM/DD')"))
|
|
|
|
->get();
|
2018-01-04 15:52:04 +09:00
|
|
|
|
2019-01-15 00:05:01 +09:00
|
|
|
$groupByHour = Ejaculation::select(DB::raw(
|
|
|
|
<<<'SQL'
|
2019-01-02 14:44:31 +09:00
|
|
|
to_char(ejaculated_date, 'HH24') AS "hour",
|
|
|
|
count(*) AS "count"
|
|
|
|
SQL
|
|
|
|
))
|
|
|
|
->where('user_id', $user->id)
|
2019-03-30 13:29:55 +09:00
|
|
|
->where('ejaculated_date', '<', $dateUntil)
|
2019-01-02 14:44:31 +09:00
|
|
|
->groupBy(DB::raw("to_char(ejaculated_date, 'HH24')"))
|
2019-01-19 03:02:37 +09:00
|
|
|
->orderBy(DB::raw('1'))
|
2019-01-02 14:44:31 +09:00
|
|
|
->get();
|
|
|
|
|
2018-01-04 15:52:04 +09:00
|
|
|
$dailySum = [];
|
|
|
|
$monthlySum = [];
|
|
|
|
$yearlySum = [];
|
2019-01-02 14:44:31 +09:00
|
|
|
$dowSum = array_fill(0, 7, 0);
|
|
|
|
$hourlySum = array_fill(0, 24, 0);
|
2018-01-04 15:52:04 +09:00
|
|
|
|
|
|
|
// 年間グラフ用の配列初期化
|
|
|
|
if ($groupByDay->first() !== null) {
|
|
|
|
$year = Carbon::createFromFormat('Y/m/d', $groupByDay->first()->date)->year;
|
|
|
|
$currentYear = date('Y');
|
|
|
|
for (; $year <= $currentYear; $year++) {
|
|
|
|
$yearlySum[$year] = 0;
|
|
|
|
}
|
2017-11-07 00:22:40 +09:00
|
|
|
}
|
|
|
|
|
2018-01-04 15:52:04 +09:00
|
|
|
foreach ($groupByDay as $data) {
|
|
|
|
$date = Carbon::createFromFormat('Y/m/d', $data->date);
|
|
|
|
$yearAndMonth = $date->format('Y/m');
|
|
|
|
|
|
|
|
$dailySum[$date->timestamp] = $data->count;
|
|
|
|
$yearlySum[$date->year] += $data->count;
|
2019-01-02 14:44:31 +09:00
|
|
|
$dowSum[$date->dayOfWeek] += $data->count;
|
2019-08-04 00:57:35 +09:00
|
|
|
$monthlySum[$yearAndMonth] = ($monthlySum[$yearAndMonth] ?? 0) + $data->count;
|
2018-01-04 14:50:14 +09:00
|
|
|
}
|
|
|
|
|
2019-01-02 14:44:31 +09:00
|
|
|
foreach ($groupByHour as $data) {
|
|
|
|
$hour = (int)$data->hour;
|
|
|
|
$hourlySum[$hour] += $data->count;
|
|
|
|
}
|
2019-08-04 00:57:35 +09:00
|
|
|
|
2019-03-05 01:08:17 +09:00
|
|
|
$graphData = [
|
|
|
|
'dailySum' => $dailySum,
|
|
|
|
'dowSum' => $dowSum,
|
2019-08-04 00:57:35 +09:00
|
|
|
'monthlySum' => $monthlySum,
|
2019-03-05 01:08:17 +09:00
|
|
|
'yearlyKey' => array_keys($yearlySum),
|
|
|
|
'yearlySum' => array_values($yearlySum),
|
|
|
|
'hourlyKey' => array_keys($hourlySum),
|
|
|
|
'hourlySum' => array_values($hourlySum),
|
|
|
|
];
|
|
|
|
|
|
|
|
return view('user.stats')->with(compact('user', 'graphData'));
|
2017-11-05 01:26:52 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
public function okazu($name)
|
|
|
|
{
|
|
|
|
$user = User::where('name', $name)->first();
|
|
|
|
if (empty($user)) {
|
|
|
|
abort(404);
|
|
|
|
}
|
2017-08-27 04:44:53 +09:00
|
|
|
|
2018-01-06 00:35:04 +09:00
|
|
|
// チェックインの取得
|
2019-01-15 00:05:01 +09:00
|
|
|
$query = Ejaculation::select(DB::raw(
|
|
|
|
<<<'SQL'
|
2018-01-06 00:35:04 +09:00
|
|
|
id,
|
|
|
|
ejaculated_date,
|
|
|
|
note,
|
|
|
|
is_private,
|
2019-09-07 19:57:44 +09:00
|
|
|
is_too_sensitive,
|
2018-01-06 00:35:04 +09:00
|
|
|
link,
|
|
|
|
to_char(lead(ejaculated_date, 1, NULL) OVER (ORDER BY ejaculated_date DESC), 'YYYY/MM/DD HH24:MI') AS before_date,
|
|
|
|
to_char(ejaculated_date - (lead(ejaculated_date, 1, NULL) OVER (ORDER BY ejaculated_date DESC)), 'FMDDD日 FMHH24時間 FMMI分') AS ejaculated_span
|
|
|
|
SQL
|
|
|
|
))
|
|
|
|
->where('user_id', $user->id)
|
|
|
|
->where('link', '<>', '');
|
|
|
|
if (!Auth::check() || $user->id !== Auth::id()) {
|
|
|
|
$query = $query->where('is_private', false);
|
|
|
|
}
|
|
|
|
$ejaculations = $query->orderBy('ejaculated_date', 'desc')
|
2018-01-08 10:28:12 +09:00
|
|
|
->with('tags')
|
2020-05-14 01:18:14 +09:00
|
|
|
->withLikes()
|
2018-01-06 00:35:04 +09:00
|
|
|
->paginate(20);
|
|
|
|
|
|
|
|
return view('user.profile')->with(compact('user', 'ejaculations'));
|
2017-08-27 04:44:53 +09:00
|
|
|
}
|
2019-04-06 00:14:05 +09:00
|
|
|
|
|
|
|
public function likes($name)
|
|
|
|
{
|
|
|
|
$user = User::where('name', $name)->first();
|
|
|
|
if (empty($user)) {
|
|
|
|
abort(404);
|
|
|
|
}
|
|
|
|
|
|
|
|
$likes = $user->likes()
|
|
|
|
->orderBy('created_at', 'desc')
|
|
|
|
->with('ejaculation.user', 'ejaculation.tags')
|
2019-04-21 02:12:42 +09:00
|
|
|
->whereHas('ejaculation', function ($query) {
|
|
|
|
$query->where('user_id', Auth::id())
|
|
|
|
->orWhere('is_private', false);
|
|
|
|
})
|
2019-04-06 00:14:05 +09:00
|
|
|
->paginate(20);
|
|
|
|
|
|
|
|
return view('user.likes')->with(compact('user', 'likes'));
|
|
|
|
}
|
2017-08-27 04:44:53 +09:00
|
|
|
}
|