2021-03-08 13:20:56 +00:00
|
|
|
<?php
|
2021-03-08 13:52:34 +00:00
|
|
|
require_once "../../../bootstrap.php";
|
2021-03-09 13:43:39 +00:00
|
|
|
require_once('../Group/Group.php');
|
2021-03-09 14:04:59 +00:00
|
|
|
require_once('FileHandler.php');
|
2021-03-08 13:20:56 +00:00
|
|
|
use Backend\Models\GameData;
|
2021-03-09 13:43:39 +00:00
|
|
|
|
2021-03-09 12:54:20 +00:00
|
|
|
use Backend\Models\Group;
|
2021-03-08 13:20:56 +00:00
|
|
|
|
2021-03-09 12:17:18 +00:00
|
|
|
$isImages = false;
|
|
|
|
|
2021-03-09 12:30:21 +00:00
|
|
|
session_start();
|
|
|
|
|
|
|
|
if(isset($_SESSION['token'])){
|
|
|
|
|
2021-03-09 12:54:20 +00:00
|
|
|
$group = groupViaToken($_SESSION['token']);
|
2021-03-08 13:20:56 +00:00
|
|
|
|
2021-03-09 12:54:20 +00:00
|
|
|
if(!isset($group->game_data_id)){
|
|
|
|
if(isset($_POST['submitUpload'])){
|
|
|
|
//Get the data from the user form
|
|
|
|
$gameFile = $_FILES['gameFile'];
|
|
|
|
$desc = $_POST['description'];
|
|
|
|
$title = $_POST['gameTitle'];
|
|
|
|
$thumbnail = $_FILES['thumbnailFile'];
|
|
|
|
$isWebBased = isset( $_POST['isWebBased']);
|
2021-03-08 13:20:56 +00:00
|
|
|
|
2021-03-10 08:46:22 +00:00
|
|
|
$gameFileName = $_FILES['gameFile']['name'];//Game name
|
|
|
|
$gameFileTmp = $_FILES['gameFile']['tmp_name'];//Tmp location of the file
|
|
|
|
$gameFileError = $_FILES['gameFile']['error'];//File error
|
2021-03-08 13:20:56 +00:00
|
|
|
|
2021-03-09 12:54:20 +00:00
|
|
|
$thumbnailFileName = $_FILES['thumbnailFile']['name'];//Game name
|
|
|
|
$thumbnailFileTmp = $_FILES['thumbnailFile']['tmp_name'];//Tmp location of the file
|
|
|
|
$thumbnailFileError =$_FILES['thumbnailFile']['error'];//File error
|
2021-03-08 13:20:56 +00:00
|
|
|
|
2021-03-10 13:11:14 +00:00
|
|
|
if($gameFileError === 0){
|
2021-03-10 08:46:22 +00:00
|
|
|
$gameData = new GameData();
|
|
|
|
$gameData->game_name = $title;
|
|
|
|
$gameData->game_link = ZipFileHandler($gameFileName,$gameFileTmp);
|
|
|
|
$gameData->description = $desc;
|
2021-03-10 13:11:14 +00:00
|
|
|
if(isset($thumbnail) && $thumbnailFileError === 0){
|
2021-03-10 08:46:22 +00:00
|
|
|
$gameData->img = imagesFileHandler($thumbnailFileName,$thumbnailFileTmp);
|
2021-03-09 12:54:20 +00:00
|
|
|
}
|
2021-03-10 08:46:22 +00:00
|
|
|
$gameData->is_web_Based = $isWebBased;
|
|
|
|
$gameData->save();
|
|
|
|
$group->gameData()->associate($gameData);
|
|
|
|
$group->save();
|
2021-03-08 13:20:56 +00:00
|
|
|
}
|
|
|
|
}
|
2021-03-10 10:23:40 +00:00
|
|
|
}else{
|
|
|
|
header("location: ../../../Frontend/group.php?error=TooManyUploads");
|
2021-03-08 13:20:56 +00:00
|
|
|
}
|
2021-03-10 10:23:40 +00:00
|
|
|
}else{
|
|
|
|
header("location: ../../../Main.php?error=NoLogin");
|
2021-03-08 13:20:56 +00:00
|
|
|
}
|