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); } }