blessing-skin-server/app/Http/Controllers/SkinlibController.php

334 lines
12 KiB
PHP
Raw Normal View History

2016-07-21 22:01:57 +08:00
<?php
2016-08-28 10:05:21 +08:00
namespace App\Http\Controllers;
2016-07-21 22:01:57 +08:00
use View;
use Utils;
use Option;
use Storage;
use Session;
2016-07-21 22:01:57 +08:00
use App\Models\User;
use App\Models\Closet;
use App\Models\Player;
2016-07-21 22:01:57 +08:00
use App\Models\Texture;
use Illuminate\Http\Request;
use Illuminate\Http\JsonResponse;
use App\Exceptions\PrettyPageException;
2016-10-23 11:41:52 +08:00
use App\Services\Repositories\UserRepository;
2016-07-21 22:01:57 +08:00
class SkinlibController extends Controller
2016-07-21 22:01:57 +08:00
{
private $user = null;
2016-10-23 11:41:52 +08:00
public function __construct(UserRepository $users)
2016-07-21 22:01:57 +08:00
{
2016-10-23 11:41:52 +08:00
// Try to load user by uid stored in session.
// If there is no uid stored in session or the uid is invalid
// it will return a null value.
$this->user = $users->get(session('uid'));
2016-07-21 22:01:57 +08:00
}
public function index(Request $request)
2016-07-21 22:01:57 +08:00
{
$filter = $request->input('filter', 'skin');
$sort = $request->input('sort', 'time');
2017-04-24 17:02:29 +08:00
$uid = intval($request->input('uid', 0));
$page = $request->input('page', 1) <= 0 ? 1 : $request->input('page', 1);
2016-07-21 22:01:57 +08:00
$sort_by = ($sort == "time") ? "upload_at" : $sort;
2016-07-21 22:01:57 +08:00
if ($filter == "skin") {
2017-04-24 17:02:29 +08:00
$textures = Texture::where('type', 'steve')->orWhere('type', 'alex');
} else {
$textures = Texture::where('type', $filter);
}
2016-07-26 13:36:24 +08:00
2017-04-24 17:02:29 +08:00
$textures = $textures->orderBy($sort_by, 'desc')->get();
2016-07-21 22:01:57 +08:00
2017-04-24 17:02:29 +08:00
if ($uid != 0) {
$textures = $textures->where('uploader', $uid);
2016-07-21 22:01:57 +08:00
}
2016-08-13 22:31:24 +08:00
if (!is_null($this->user)) {
// show private textures when show uploaded textures of current user
2017-04-24 17:02:29 +08:00
if ($uid != $this->user->uid && !$this->user->isAdmin()) {
$textures = $textures->where('public', 1)
->merge($textures->where('uploader', $this->user->uid));
}
2016-08-13 22:31:24 +08:00
} else {
2017-04-24 17:16:54 +08:00
$textures = $textures->where('public', 1);
2016-08-13 22:31:24 +08:00
}
$total_pages = ceil($textures->count() / 20);
2016-07-24 11:12:52 +08:00
2017-04-24 17:02:29 +08:00
$textures = $textures->slice(($page - 1) * 20);
2016-07-21 22:01:57 +08:00
return view('skinlib.index')->with('user', $this->user)
->with('sort', $sort)
->with('filter', $filter)
2017-04-24 17:02:29 +08:00
->with('uploader', $uid)
->with('textures', $textures)
->with('page', $page)
->with('total_pages', $total_pages);
2016-07-21 22:01:57 +08:00
}
public function search(Request $request)
2016-07-21 22:01:57 +08:00
{
$q = $request->input('q', '');
$filter = $request->input('filter', 'skin');
$sort = $request->input('sort', 'time');
2016-07-21 22:01:57 +08:00
$sort_by = ($sort == "time") ? "upload_at" : $sort;
if ($filter == "skin") {
$textures = Texture::like('name', $q)->where(function($query) use ($q) {
$query->where('type', '=', 'steve')
2016-07-21 22:01:57 +08:00
->orWhere('type', '=', 'alex');
})->orderBy($sort_by, 'desc')->get();
} else {
$textures = Texture::like('name', $q)
->where('type', $filter)
2017-04-24 17:16:54 +08:00
->where('public', 1)
2016-07-21 22:01:57 +08:00
->orderBy($sort_by, 'desc')->get();
}
if (!is_null($this->user)) {
// show private textures when show uploaded textures of current user
if (!$this->user->isAdmin()) {
$textures = $textures->where('public', 1)
->merge($textures->where('uploader', $this->user->uid));
}
} else {
2017-04-24 17:16:54 +08:00
$textures = $textures->where('public', 1);
}
return view('skinlib.search')->with('user', $this->user)
->with('sort', $sort)
->with('filter', $filter)
2017-04-24 17:02:29 +08:00
->with('uploader', 0)
->with('q', $q)
->with('textures', $textures);
2016-07-21 22:01:57 +08:00
}
public function show($tid)
2016-07-21 22:01:57 +08:00
{
$texture = Texture::find($tid);
if (!$texture || $texture && !Storage::disk('textures')->has($texture->hash)) {
if (Option::get('auto_del_invalid_texture') == "1") {
2016-08-28 20:33:35 +08:00
if ($texture)
$texture->delete();
2016-09-24 22:49:20 +08:00
abort(404, trans('skinlib.show.deleted'));
}
2016-09-24 22:49:20 +08:00
abort(404, trans('skinlib.show.deleted').trans('skinlib.show.contact-admin'));
2016-08-16 22:58:21 +08:00
}
2016-07-21 22:01:57 +08:00
if ($texture->public == "0") {
2016-10-23 11:41:52 +08:00
if (is_null($this->user) || ($this->user->uid != $texture->uploader && !$this->user->isAdmin()))
2016-09-24 22:49:20 +08:00
abort(404, trans('skinlib.show.private'));
2016-07-21 22:01:57 +08:00
}
return view('skinlib.show')->with('texture', $texture)->with('with_out_filter', true)->with('user', $this->user);
2016-07-21 22:01:57 +08:00
}
public function info($tid)
{
2016-12-10 19:49:45 +08:00
if ($t = Texture::find($tid)) {
return json($t->toArray());
} else {
return json([]);
}
2016-07-21 22:01:57 +08:00
}
public function upload()
{
return view('skinlib.upload')->with('user', $this->user)->with('with_out_filter', true);
2016-07-21 22:01:57 +08:00
}
public function handleUpload(Request $request)
2016-07-21 22:01:57 +08:00
{
if (($response = $this->checkUpload($request)) instanceof JsonResponse) {
return $response;
}
2016-07-21 22:01:57 +08:00
2016-07-24 09:36:34 +08:00
$t = new Texture();
$t->name = $request->input('name');
$t->type = $request->input('type');
2016-08-14 13:31:56 +08:00
$t->likes = 1;
$t->hash = Utils::upload($_FILES['file']);
2016-07-24 09:36:34 +08:00
$t->size = ceil($_FILES['file']['size'] / 1024);
$t->public = ($request->input('public') == 'true') ? "1" : "0";
2016-07-24 09:36:34 +08:00
$t->uploader = $this->user->uid;
$t->upload_at = Utils::getTimeFormatted();
2016-07-21 22:01:57 +08:00
$cost = $t->size * (($t->public == "1") ? Option::get('score_per_storage') : Option::get('private_score_per_storage'));
2017-04-22 23:35:25 +08:00
$cost += option('score_per_closet_item');
if ($this->user->getScore() < $cost)
2016-09-24 22:49:20 +08:00
return json(trans('skinlib.upload.lack-score'), 7);
2016-07-21 22:01:57 +08:00
$results = Texture::where('hash', $t->hash)->get();
if (!$results->isEmpty()) {
2016-07-21 22:01:57 +08:00
foreach ($results as $result) {
// if the texture already uploaded was setted to private,
// then allow to re-upload it.
if ($result->type == $t->type && $result->public == "1") {
return json(trans('skinlib.upload.repeated'), 0, [
2016-07-22 10:45:36 +08:00
'tid' => $result->tid
]);
2016-07-21 22:01:57 +08:00
}
}
}
$t->save();
$this->user->setScore($cost, 'minus');
2016-07-21 22:01:57 +08:00
2016-10-23 11:41:52 +08:00
if ($this->user->getCloset()->add($t->tid, $t->name)) {
return json(trans('skinlib.upload.success', ['name' => $request->input('name')]), 0, [
2016-07-21 22:01:57 +08:00
'tid' => $t->tid
]);
}
}
public function delete(Request $request)
2016-07-21 22:01:57 +08:00
{
$result = Texture::find($request->tid);
2016-07-21 22:01:57 +08:00
2016-07-24 15:56:23 +08:00
if (!$result)
2016-09-24 22:49:20 +08:00
return json(trans('skinlib.non-existent'), 1);
2016-07-21 22:01:57 +08:00
2016-10-23 11:41:52 +08:00
if ($result->uploader != $this->user->uid && !$this->user->isAdmin())
2016-09-24 22:49:20 +08:00
return json(trans('skinlib.no-permission'), 1);
2016-07-21 22:01:57 +08:00
2016-07-24 15:56:23 +08:00
// check if file occupied
if (Texture::where('hash', $result['hash'])->count() == 1)
Storage::delete($result['hash']);
2016-07-21 22:01:57 +08:00
if (option('return_score')) {
2017-04-22 23:35:25 +08:00
if ($result->public == 1) {
2017-04-21 18:44:11 +08:00
$this->user->setScore($result->size * Option::get('score_per_storage'), 'plus');
2017-04-22 23:35:25 +08:00
foreach (Closet::all() as $closet) {
if ($closet->has($result->tid)) {
$closet->remove($result->tid);
User::find($closet->uid)->setScore(option('score_per_closet_item'), 'plus');
}
}
}
2017-04-21 18:44:11 +08:00
else
$this->user->setScore($result->size * Option::get('private_score_per_storage'), 'plus');
}
2016-07-24 15:56:23 +08:00
if ($result->delete())
2016-09-24 22:49:20 +08:00
return json(trans('skinlib.delete.success'), 0);
2016-07-21 22:01:57 +08:00
}
public function privacy(Request $request)
2016-07-21 22:01:57 +08:00
{
$t = Texture::find($request->input('tid'));
$type = $t->type;
$uid = session('uid');
2016-07-24 15:56:23 +08:00
if (!$t)
2016-09-24 22:49:20 +08:00
return json(trans('skinlib.non-existent'), 1);
2016-07-24 15:56:23 +08:00
2016-10-23 11:41:52 +08:00
if ($t->uploader != $this->user->uid && !$this->user->isAdmin())
2016-09-24 22:49:20 +08:00
return json(trans('skinlib.no-permission'), 1);
2016-07-24 15:56:23 +08:00
foreach (Player::where("tid_$type", $t->tid)->where('uid', '<>', $uid)->get() as $player) {
$player->setTexture(["tid_$type" => 0]);
}
foreach (Closet::all() as $closet) {
if ($closet->uid != $uid && $closet->has($t->tid)) {
$closet->remove($t->tid);
2017-04-21 18:44:11 +08:00
if (option('return_score')) {
User::find($closet->uid)->setScore(option('score_per_closet_item'), 'plus');
}
}
}
2017-04-21 18:44:11 +08:00
app('user.current')->setScore(
$t->size * (option('private_score_per_storage') - option('score_per_storage')) * ($t->public == 1 ? -1 : 1),
'plus'
);
2016-07-21 22:01:57 +08:00
if ($t->setPrivacy(!$t->public)) {
2016-09-10 21:39:45 +08:00
return json([
2016-07-21 22:01:57 +08:00
'errno' => 0,
2016-09-24 22:49:20 +08:00
'msg' => trans('skinlib.privacy.success', ['privacy' => ($t->public == "0" ? trans('general.private') : trans('general.public'))]),
2016-07-21 22:01:57 +08:00
'public' => $t->public
]);
}
}
public function rename(Request $request) {
$this->validate($request, [
'tid' => 'required|integer',
'new_name' => 'required|no_special_chars'
]);
2016-07-24 15:56:23 +08:00
$t = Texture::find($request->input('tid'));
2016-07-24 15:56:23 +08:00
if (!$t)
2016-09-24 22:49:20 +08:00
return json(trans('skinlib.non-existent'), 1);
2016-07-24 15:56:23 +08:00
2016-10-23 11:41:52 +08:00
if ($t->uploader != $this->user->uid && !$this->user->isAdmin())
2016-09-24 22:49:20 +08:00
return json(trans('skinlib.no-permission'), 1);
2016-07-24 15:56:23 +08:00
$t->name = $request->input('new_name');
2016-07-24 15:56:23 +08:00
if ($t->save()) {
2016-09-24 22:49:20 +08:00
return json(trans('skinlib.rename.success', ['name' => $request->input('new_name')]), 0);
2016-07-24 15:56:23 +08:00
}
}
/**
* Check Uploaded Files
*
* @param Request $request
* @return void
*/
private function checkUpload(Request $request)
2016-07-21 22:01:57 +08:00
{
if ($file = $request->files->get('file')) {
if ($file->getError() !== UPLOAD_ERR_OK) {
return json(Utils::convertUploadFileError($file->getError()), $file->getError());
}
}
$this->validate($request, [
'name' => 'required|no_special_chars',
'file' => 'required|max:'.option('max_upload_file_size'),
'public' => 'required'
]);
2017-01-01 21:24:23 +08:00
if ($_FILES['file']['type'] != "image/png" && $_FILES['file']['type'] != "image/x-png") {
2016-09-24 22:49:20 +08:00
return json(trans('skinlib.upload.type-error'), 1);
}
// if error occured while uploading file
if ($_FILES['file']["error"] > 0)
2016-09-10 21:39:45 +08:00
return json($_FILES['file']["error"], 1);
$type = $request->input('type');
$size = getimagesize($_FILES['file']["tmp_name"]);
$ratio = $size[0] / $size[1];
if ($type == "steve" || $type == "alex") {
if ($ratio != 2 && $ratio != 1)
2016-09-24 22:49:20 +08:00
return json(trans('skinlib.upload.invalid-size', ['type' => trans('general.skin'), 'width' => $size[0], 'height' => $size[1]]), 1);
2017-01-25 15:34:43 +08:00
if ($size[0] % 64 != 0 || $size[1] % 32 != 0)
return json(trans('skinlib.upload.invalid-hd-skin', ['type' => trans('general.skin'), 'width' => $size[0], 'height' => $size[1]]), 1);
} elseif ($type == "cape") {
if ($ratio != 2)
2016-09-24 22:49:20 +08:00
return json(trans('skinlib.upload.invalid-size', ['type' => trans('general.cape'), 'width' => $size[0], 'height' => $size[1]]), 1);
2016-07-21 22:01:57 +08:00
} else {
2016-09-24 22:49:20 +08:00
return json(trans('general.illegal-parameters'), 1);
2016-07-21 22:01:57 +08:00
}
}
}