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

270 lines
8.7 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\Texture;
use Illuminate\Http\Request;
use App\Exceptions\PrettyPageException;
2016-07-21 22:01:57 +08:00
class SkinlibController extends Controller
2016-07-21 22:01:57 +08:00
{
private $user = null;
public function __construct()
2016-07-21 22:01:57 +08:00
{
$this->user = Session::has('uid') ? new User(session('uid')) : null;
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');
$uid = $request->input('uid', 0);
$page = $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") {
$textures = Texture::where(function($query) {
2016-07-26 13:36:24 +08:00
$query->where('type', '=', 'steve')
2016-07-21 22:01:57 +08:00
->orWhere('type', '=', 'alex');
2016-07-24 11:12:52 +08:00
})->orderBy($sort_by, 'desc');
2016-07-26 13:36:24 +08:00
2016-07-21 22:01:57 +08:00
} elseif ($filter == "user") {
2016-08-13 22:31:24 +08:00
$textures = Texture::where('uploader', $uid)->orderBy($sort_by, 'desc');
2016-07-21 22:01:57 +08:00
} else {
2016-07-26 13:36:24 +08:00
$textures = Texture::where('type', $filter)->orderBy($sort_by, 'desc');
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
if ($uid != $this->user->uid && !$this->user->is_admin)
$textures = $textures->where('public', '1');
} else {
2016-07-26 13:36:24 +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
2016-07-26 13:36:24 +08:00
$textures = $textures->skip(($page - 1) * 20)->take(20)->get();
2016-07-21 22:01:57 +08:00
return view('skinlib.index')->with('user', $this->user)
->with('sort', $sort)
->with('filter', $filter)
->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('public', '=', '1')
->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)
->where('public', '1')
->orderBy($sort_by, 'desc')->get();
}
return view('skinlib.search')->with('user', $this->user)
->with('sort', $sort)
->with('filter', $filter)
->with('q', $q)
->with('textures', $textures);
2016-07-21 22:01:57 +08:00
}
public function show(Request $request)
2016-07-21 22:01:57 +08:00
{
$this->validate($request, [
'tid' => 'required|integer'
]);
2016-08-28 20:33:35 +08:00
2016-07-21 22:01:57 +08:00
$texture = Texture::find($_GET['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();
abort(404, '请求的材质文件已经被删除');
}
abort(404, '请求的材质文件已经被删除,请联系管理员删除该条目');
2016-08-16 22:58:21 +08:00
}
2016-07-21 22:01:57 +08:00
if ($texture->public == "0") {
if (is_null($this->user) || ($this->user->uid != $texture->uploader && !$this->user->is_admin))
abort(404, '请求的材质已经设为隐私,仅上传者和管理员可查看');
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-09-10 21:39:45 +08:00
return json(Texture::find($tid)->toArray());
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
{
$this->checkUpload($request);
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'));
if ($this->user->getScore() < $cost)
2016-09-10 21:39:45 +08:00
return json('积分不够啦', 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) {
2016-07-22 10:45:36 +08:00
if ($result->type == $t->type) {
2016-09-10 21:39:45 +08:00
return json([
2016-07-22 10:45:36 +08:00
'errno' => 0,
'msg' => '已经有人上传过这个材质了,直接添加到衣柜使用吧~',
'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
if ($this->user->closet->add($t->tid, $t->name)) {
2016-09-10 21:39:45 +08:00
return json([
2016-07-21 22:01:57 +08:00
'errno' => 0,
'msg' => '材质 '.$request->input('name').' 上传成功',
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-10 21:39:45 +08:00
return json('材质不存在', 1);
2016-07-21 22:01:57 +08:00
2016-07-24 15:56:23 +08:00
if ($result->uploader != $this->user->uid && !$this->user->is_admin)
2016-09-10 21:39:45 +08:00
return json('你不是这个材质的上传者哦', 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
2016-07-29 12:46:19 +08:00
$this->user->setScore($result->size * Option::get('score_per_storage'), 'plus');
2016-07-24 15:56:23 +08:00
if ($result->delete())
2016-09-10 21:39:45 +08:00
return json('材质已被成功删除', 0);
2016-07-21 22:01:57 +08:00
}
public function privacy($tid, Request $request)
2016-07-21 22:01:57 +08:00
{
$t = Texture::find($request->tid);
2016-07-24 15:56:23 +08:00
if (!$t)
2016-09-10 21:39:45 +08:00
return json('材质不存在', 1);
2016-07-24 15:56:23 +08:00
if ($t->uploader != $this->user->uid && !$this->user->is_admin)
2016-09-10 21:39:45 +08:00
return json('你不是这个材质的上传者哦', 1);
2016-07-24 15:56:23 +08:00
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,
'msg' => '材质已被设为'.($t->public == "0" ? "隐私" : "公开"),
'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-10 21:39:45 +08:00
return json('材质不存在', 1);
2016-07-24 15:56:23 +08:00
if ($t->uploader != $this->user->uid && !$this->user->is_admin)
2016-09-10 21:39:45 +08:00
return json('你不是这个材质的上传者哦', 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-10 21:39:45 +08:00
return json('材质名称已被成功设置为'.$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
{
$this->validate($request, [
'name' => 'required|no_special_chars',
'file' => 'required|mimes:png|max:10240',
'public' => 'required'
]);
// 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-10 21:39:45 +08:00
return json("不是有效的皮肤文件(宽 {$size[0]},高 {$size[1]}", 1);
} elseif ($type == "cape") {
if ($ratio != 2)
2016-09-10 21:39:45 +08:00
return json("不是有效的披风文件(宽 {$size[0]},高 {$size[1]}", 1);
2016-07-21 22:01:57 +08:00
} else {
2016-09-10 21:39:45 +08:00
return json('非法参数', 1);
2016-07-21 22:01:57 +08:00
}
}
}