tadah-eleven/app/Http/Controllers/RenderController.php

55 lines
1.4 KiB
PHP

<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use App\Models\RenderQueue;
class RenderController extends Controller
{
public function getQueue(Request $request) {
$queue = RenderQueue::all();
$string = '';
foreach ($queue as $queueitem) {
$string = $string . $queueitem->type . ':' . $queueitem->target_id . ':' . $queueitem->id . ';';
}
return substr_replace($string, "", -1);
}
public function upload(Request $request) {
$thumbnailKey = $request->thumbnailkey;
$thumbQueueId = $request->thumbqueueid;
if (!$thumbnailKey == config('app.thumbnail_key')) {
abort(403);
}
if (!$thumbQueueId) {
abort(400);
}
if (!$request->hasFile('file')) {
abort(400);
}
$queue = RenderQueue::where(['id' => $thumbQueueId])->firstOrFail();
if ($queue->type == "user") {
$request->file('file')->move(storage_path() . '/app/public/users/', 'user_' . $queue->target_id . '.png');
} else {
$request->file('file')->move(storage_path() . '/app/public/items/', $queue->target_id . '_thumbnail.png');
}
$queue->delete();
return 'OK';
}
public function getClothingCharApp(Request $request, $id)
{
return url('/xmlasset?id=' . $id);
}
}