このリポジトリは2023-09-09にアーカイブされています。 ファイルの閲覧とクローンは可能ですが、プッシュ、イシューの作成、プルリクエストはできません。
076server/app/Http/Controllers/UserController.php

341 行
11 KiB
PHP
Raw 通常表示 履歴

2018-01-24 01:36:47 +09:00
<?php
namespace App\Http\Controllers;
use App\Models\ForUser;
2018-01-24 05:33:53 +09:00
use Illuminate\Support\Facades\DB;
2018-01-24 01:36:47 +09:00
use Illuminate\Http\Request;
2018-03-06 21:34:19 +09:00
use Illuminate\Contracts\Routing\ResponseFactory;
2018-01-24 01:36:47 +09:00
use Illuminate\Support\Facades\Log;
2018-02-07 00:58:54 +09:00
use Tymon\JWTAuth\Facades\JWTAuth;
use Tymon\JWTAuth\Exceptions\JWTException;
2018-01-24 01:36:47 +09:00
use App\Http\Controllers\AuthController;
2018-03-02 00:59:26 +09:00
2018-01-24 01:36:47 +09:00
class UserController extends Controller {
private $objAuth;
2018-03-02 00:59:26 +09:00
public function __construct() {
$this->objAuth = new AuthController();
}
2018-02-27 01:12:06 +09:00
2018-02-07 16:21:15 +09:00
// User
public function getUsersOnline() { // /api/rpc/user/user/getusersonline
$time = time();
$past = $time - 10;
$static = $time + 1;
$timeout = $time - $past;
return DB::table('users')
->join('usr_details', 'usr_details.user_id', '=', 'users.id')
->join('usr_profile', 'usr_profile.user_id', '=', 'users.id')
->join('usr_perm_id', 'usr_perm_id.user_id', '=', 'users.id')
->where('ostatus', '!=', '4')
->where('ontime', '>', $timeout)
->get(array(
'id',
'username',
'perm_id',
'email',
'reg_date',
'gender',
'ip_address',
'avatar',
'name_style',
'display_name',
'country',
'ostatus',
'ontime'
));
}
public function updateUserOnline(Request $request) { // /api/rpc/user/user/updateuseronline
return DB::table('usr_details')
->where('user_id', $request->user_id)
->update([
'ontime' => time()
]);
}
public function getUsers(Request $request) { // /api/rpc/user/user/getusers
$getting = array(
'users.id',
'username',
'perm_id',
'reg_date',
'gender',
'avatar',
'name_style',
'display_name',
'country'
);
$valid = $this->objAuth->getPermissions($request->username, $request->password);
if ($valid['usr_emailshow'] == 1) {
array_push($getting, 'email');
}
if ($valid['usr_ipshow'] == 1) {
array_push($getting, 'ip_address');
}
2018-02-07 22:24:41 +09:00
return DB::table('users')
->join('usr_details', 'usr_details.user_id', '=', 'users.id')
->join('usr_profile', 'usr_profile.user_id', '=', 'users.id')
->join('usr_perm_id', 'usr_perm_id.user_id', '=', 'users.id')
->get($getting);
2018-01-24 01:36:47 +09:00
}
public function getUser($id, Request $request) { // /api/rpc/user/user/getuser/id/uid
2018-03-02 00:59:26 +09:00
$getting = array(
'users.id',
2018-04-17 16:12:05 +09:00
'users.username',
'usr_perm_id.perm_id',
'usr_profile.member_title',
'usr_details.reg_date',
'usr_contacts.website_link',
'usr_contacts.website_name',
'usr_profile.gender',
'usr_profile.location',
'usr_profile.birthday',
'usr_profile.bio',
'usr_profile.avatar',
'usr_profile.name_style',
'usr_profile.display_name',
'usr_profile.country',
'usr_contacts.website_link',
'usr_contacts.website_name',
'usr_contacts.youtube_link',
'usr_contacts.youtube_name',
'usr_contacts.niconico',
'usr_contacts.pixiv',
'usr_contacts.discord',
'usr_contacts.mastodon',
'usr_contacts.twitter'
2018-03-02 00:59:26 +09:00
);
$valid = $this->objAuth->getPermissions($request->username, $request->password);
if ($valid['usr_emailshow'] == 1) {
2018-03-02 00:59:26 +09:00
array_push($getting, 'email');
}
if ($valid['usr_ipshow'] == 1) {
2018-03-02 00:59:26 +09:00
array_push($getting, 'ip_address');
}
if ($valid['usr_canwarn'] == 1) {
2018-03-02 00:59:26 +09:00
array_push($getting, 'strikes');
}
2018-03-02 00:59:26 +09:00
2018-02-07 22:24:41 +09:00
return DB::table('users')
->join('usr_details', 'usr_details.user_id', '=', 'users.id')
->join('usr_profile', 'usr_profile.user_id', '=', 'users.id')
2018-04-17 16:12:05 +09:00
->join('usr_contacts', 'usr_contacts.user_id', '=', 'users.id')
2018-02-07 22:24:41 +09:00
->join('usr_perm_id', 'usr_perm_id.user_id', '=', 'users.id')
->where('id', $id)
2018-03-02 00:59:26 +09:00
->get($getting);
}
2018-02-15 22:43:45 +09:00
public function getExist($username, $email) { // /api/rpc/user/user/getexist/username/email
$isExist = DB::table('users')
->select('username', 'email')
->where('username', mb_strtolower($username))
->orWhere('email', mb_strtolower($email))
->get();
return $isExist->count();
}
2018-02-06 19:51:43 +09:00
public function getPostStyle($id) { // /api/rpc/user/user/getpoststyle/id
2018-02-15 22:43:45 +09:00
return DB::table('users')
2018-02-06 19:51:43 +09:00
->select('header', 'footer')
->where('id', $id)
->get();
}
2018-02-15 00:54:43 +09:00
public function getGroupName($id) { // /api/rpc/user/user/getgroupname/id
return DB::table('usr_perm_module')
->join('usr_perm_id', 'usr_perm_id.perm_id', '=', 'usr_perm_module.id')
->where('user_id', $id)
->get(array(
'name',
// 'badge' (this is a pipeline feature, please don't uncomment for now!)
));
}
2018-02-02 18:27:57 +09:00
public function getGroupColours() { // /api/rpc/user/user/getgroupcolours
return DB::table('usr_perm_module')
->select(
2018-01-30 18:43:30 +09:00
'id',
'colour_m',
'colour_f',
'colour_u'
)
->get();
2018-01-24 01:36:47 +09:00
}
2018-02-06 01:37:45 +09:00
2018-02-07 16:21:15 +09:00
// Owner
2018-03-06 21:00:35 +09:00
public function getOwnerList() { // /api/rpc/user/owner/getownerlist
$user_data = DB::table('users')
->join('usr_profile', 'usr_profile.user_id', '=', 'users.id')
->orderBy('id', 'asc')
->get(array('id', 'username', 'display_name'));
$result = array();
foreach ($user_data as $u) {
$name = '';
if (!empty($u->display_name)) {
$name = $u->display_name;
}
else {
$name = $u->username;
}
array_push($result, [
'value' => $u->id,
'label' => $name,
]);
}
return $result;
}
2018-02-07 16:21:15 +09:00
public function countOwnersOfEntry($file_id) { // /api/rpc/user/owner/countownersofentry/id
return DB::table('str_owners')
->where('file_id', $file_id)
->count();
}
public function getOwnersOfEntry($file_id) { // /api/rpc/user/owner/getownersofentry/id
return DB::table('str_owners')
->join('str_file', 'str_owners.file_id', '=', 'str_file.id')
2018-02-07 22:24:41 +09:00
->join('users', 'str_owners.user_id', '=', 'users.id')
->join('usr_details', 'usr_details.user_id', '=', 'str_owners.user_id')
->join('usr_profile', 'usr_profile.user_id', '=', 'str_owners.user_id')
->join('usr_perm_id', 'usr_perm_id.user_id', '=', 'str_owners.user_id')
2018-02-07 16:21:15 +09:00
->where('file_id', $file_id)
->get(array(
2018-02-16 23:09:35 +09:00
'users.id',
'title',
'version',
'views',
'downloads',
'submit_date',
'last_date',
'username',
'avatar',
'perm_id',
'gender',
'display_name',
'name_style',
2018-02-07 16:21:15 +09:00
));
}
public function countEntriesOfOwner($user_id) { // /api/rpc/user/owner/countentriesofowner/id
return DB::table('str_owners')
->where('user_id', $user_id)
->count();
}
public function getEntriesOfOwner($user_id) { // /api/rpc/user/owner/getentriesofowner/id
return DB::table('str_owners')
->join('str_file', 'str_owners.file_id', '=', 'str_file.id')
2018-02-07 22:24:41 +09:00
->join('users', 'str_owners.user_id', '=', 'users.id')
->join('usr_details', 'usr_details.user_id', '=', 'str_owners.user_id')
->join('usr_profile', 'usr_profile.user_id', '=', 'str_owners.user_id')
->join('usr_perm_id', 'usr_perm_id.user_id', '=', 'str_owners.user_id')
2018-02-07 16:21:15 +09:00
->where('user_id', $user_id)
->get(array(
2018-02-16 23:09:35 +09:00
'users.id',
'title',
'version',
'views',
'downloads',
'submit_date',
'last_date',
'username',
'avatar',
'perm_id',
'gender',
'display_name',
'name_style',
2018-02-07 16:21:15 +09:00
));
}
2018-02-16 23:09:35 +09:00
public function getTotalPostCount($id) { // /api/rpc/user/user/gettotalpostcount/id
return DB::table('usr_details')
->select('total_posts')
->where('user_id', $id)
->first()->total_posts;
}
public function getTotalTopicCount($id) { // /api/rpc/user/user/gettotaltopiccount/id
return DB::table('usr_details')
->select('total_threads')
->where('user_id', $id)
->first()->total_threads;
}
2018-03-06 21:34:19 +09:00
public function addOwner(Request $request) { // /api/rpc/user/owner/addowner
$check = $this->objAuth->checkLegit($request->username, $request->password);
2018-03-06 21:34:19 +09:00
if ($check == 0) {
return 'Err!';
}
else {
$add = DB::table('str_owners')
->insert([
'user_id' => $request->user_id,
'file_id' => $request->file_id
]);
return \Response::json($add);
}
2018-03-06 21:34:19 +09:00
}
2018-02-16 23:09:35 +09:00
public function updateTotalPostCount(Request $request) { // /api/rpc/user/user/updatetotalpostcount
$check = $this->objAuth->checkLegit($request->username, $request->password);
2018-02-16 23:09:35 +09:00
if ($check == 0) {
return 'Err!';
}
else {
$getPC = $this->getTotalPostCount($request->user_id);
$getPC++;
return DB::table('usr_details')
->where('user_id', $request->user_id)
->update([
'total_posts' => $getPC
]);
}
2018-02-16 23:09:35 +09:00
}
public function updateTotalTopicCount(Request $request) { // /api/rpc/user/user/updatetotaltopiccount
$check = $this->objAuth->checkLegit($request->username, $request->password);
2018-02-16 23:09:35 +09:00
if ($check == 0) {
return 'Err!';
}
else {
$getPC = $this->getTotalPostCount($request->user_id);
$getTC = $this->getTotalTopicCount($request->user_id);
$getPC++;
$getTC++;
return DB::table('usr_details')
->where('user_id', $request->user_id)
->update([
'total_posts' => $getPC,
'total_threads' => $getTC
]);
}
2018-02-16 23:09:35 +09:00
}
2018-01-24 01:36:47 +09:00
}