2021-01-12 14:49:45 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
|
2021-01-20 20:25:29 +00:00
|
|
|
use App\Models\Image;
|
2021-01-12 14:49:45 +00:00
|
|
|
use App\Models\Tenant;
|
|
|
|
use Illuminate\Foundation\Auth\Access\AuthorizesRequests;
|
|
|
|
use Illuminate\Foundation\Bus\DispatchesJobs;
|
|
|
|
use Illuminate\Foundation\Validation\ValidatesRequests;
|
|
|
|
use Illuminate\Http\Request;
|
|
|
|
use Illuminate\Routing\Controller as BaseController;
|
|
|
|
use Illuminate\Support\Facades\Auth;
|
2021-01-20 21:35:41 +00:00
|
|
|
use Illuminate\Support\Facades\DB;
|
2021-01-12 14:49:45 +00:00
|
|
|
use Illuminate\Support\Facades\Redirect;
|
2021-01-20 20:59:42 +00:00
|
|
|
use Illuminate\Support\Facades\Storage;
|
2021-01-12 14:49:45 +00:00
|
|
|
|
|
|
|
class TenantController extends BaseController
|
|
|
|
{
|
|
|
|
use AuthorizesRequests, DispatchesJobs, ValidatesRequests;
|
|
|
|
|
|
|
|
public function newView() {
|
|
|
|
return view("tenant.new");
|
|
|
|
}
|
|
|
|
|
|
|
|
public function newTenant(Request $request) {
|
|
|
|
|
|
|
|
$validated = $request->validate([
|
|
|
|
'name' => 'required|max:255',
|
|
|
|
'url' => 'required|unique:tenants|regex:/^[a-z0-9]{8,30}$/i'
|
|
|
|
]);
|
|
|
|
|
|
|
|
$tenant = new Tenant();
|
|
|
|
$tenant->name = $validated["name"];
|
|
|
|
$tenant->url = $validated["url"];
|
|
|
|
$tenant->template = "default";
|
|
|
|
$tenant->owner = Auth::user()->id;
|
|
|
|
$tenant->saveOrFail();
|
|
|
|
|
|
|
|
$this->switchTenantById($tenant->id);
|
|
|
|
|
|
|
|
|
|
|
|
return redirect("/d");
|
|
|
|
}
|
|
|
|
|
|
|
|
public function switchTenant($url, Request $request) {
|
|
|
|
$tenant = Tenant::getByUrl($url);
|
|
|
|
if($tenant->owner == Auth::id()) {
|
|
|
|
$this->switchTenantById($tenant->id);
|
|
|
|
return Redirect::back();
|
|
|
|
} else {
|
|
|
|
return Redirect::back()->with(["msg" => "No Access to given Tenant"]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private function switchTenantById($id) {
|
|
|
|
session(["current_tenant_id" => $id]);
|
|
|
|
}
|
2021-01-20 20:25:29 +00:00
|
|
|
|
|
|
|
public function watermarkView() {
|
|
|
|
return view("tenant.watermark");
|
|
|
|
}
|
|
|
|
|
2021-01-20 21:35:41 +00:00
|
|
|
public function deleteWatermark() {
|
|
|
|
DB::beginTransaction();
|
|
|
|
$tenant = Tenant::query()->where("id", "=", session("current_tenant_id"))->firstOrFail();
|
|
|
|
$oldImage = Image::query()->where("id", "=", $tenant->watermark)->first();
|
|
|
|
if(!is_null($oldImage)) {
|
|
|
|
Storage::disk($oldImage->driver)->delete($oldImage->path);
|
|
|
|
$oldImage->deleted_at = date("Y-m-d H:i:s");
|
|
|
|
$oldImage->saveOrFail();
|
|
|
|
}
|
|
|
|
$tenant->watermark = null;
|
|
|
|
$tenant->saveOrFail();
|
|
|
|
|
|
|
|
DB::statement("UPDATE images SET refreshCache = 1 WHERE gallery IN (SELECT `id` FROM `galleries` WHERE `tenant` = 1);");
|
|
|
|
DB::commit();
|
|
|
|
return \redirect("/s/watermark");
|
|
|
|
}
|
|
|
|
|
2021-01-20 20:25:29 +00:00
|
|
|
public function watermarkSave(Request $request) {
|
|
|
|
$validated = $request->validate([
|
|
|
|
'files.0' => 'required|image'
|
|
|
|
]);
|
|
|
|
$path = $validated["files"][0]->store("watermark/".session("current_tenant_id"));
|
|
|
|
|
2021-01-20 20:59:42 +00:00
|
|
|
$tenant = Tenant::query()->where("id", "=", session("current_tenant_id"))->firstOrFail();
|
|
|
|
|
|
|
|
$oldImage = Image::query()->where("id", "=", $tenant->watermark)->first();
|
|
|
|
if(!is_null($oldImage)) {
|
2021-01-20 21:02:39 +00:00
|
|
|
Storage::disk($oldImage->driver)->delete($oldImage->path);
|
2021-01-20 20:59:42 +00:00
|
|
|
$oldImage->deleted_at = date("Y-m-d H:i:s");
|
|
|
|
$oldImage->saveOrFail();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-01-20 20:25:29 +00:00
|
|
|
$image = new Image();
|
|
|
|
$image->path = $path;
|
|
|
|
$image->driver = env('FILESYSTEM_DRIVER', 'local');
|
|
|
|
$image->filename = $validated["files"][0]->getClientOriginalName();
|
|
|
|
$image->gallery = null;
|
|
|
|
$image->size = $validated["files"][0]->getSize();
|
|
|
|
$image->typ = "watermark";
|
|
|
|
$image->saveOrFail();
|
|
|
|
|
2021-01-20 20:59:42 +00:00
|
|
|
|
2021-01-20 20:25:29 +00:00
|
|
|
$tenant->watermark = $image->id;
|
|
|
|
$tenant->saveOrFail();
|
|
|
|
|
2021-01-20 21:35:41 +00:00
|
|
|
DB::beginTransaction();
|
|
|
|
DB::statement("UPDATE images SET refreshCache = 1 WHERE gallery IN (SELECT `id` FROM `galleries` WHERE `tenant` = 1);");
|
|
|
|
DB::commit();
|
|
|
|
|
2021-01-20 20:43:58 +00:00
|
|
|
return \redirect("/s/watermark");
|
2021-01-20 20:25:29 +00:00
|
|
|
}
|
2021-01-12 14:49:45 +00:00
|
|
|
}
|