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-09 12:54:20 +00:00
|
|
|
//Handle data for thumbnail files
|
|
|
|
$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-09 12:54:20 +00:00
|
|
|
$fileExtThumb = explode('.', $thumbnailFileName);
|
|
|
|
$fileActualExtThumb = strtolower(end($fileExtThumb));
|
2021-03-08 13:20:56 +00:00
|
|
|
|
|
|
|
|
2021-03-09 12:54:20 +00:00
|
|
|
$allowedFileTypeGame = array('zip');
|
|
|
|
$allowedFileTypeThumbnail = array('gif', 'jpeg', 'png', 'svg');
|
2021-03-09 12:17:18 +00:00
|
|
|
|
2021-03-09 14:04:59 +00:00
|
|
|
if(in_array($thumbnailFileName,$allowedFileTypeThumbnail)){
|
|
|
|
if( $thumbnailFileError === 0){
|
2021-03-09 12:17:18 +00:00
|
|
|
|
2021-03-09 12:54:20 +00:00
|
|
|
if(!empty($thumbnailFileName)){
|
|
|
|
$thumbnailFileNewName = uniqid("", true). "." . $fileActualExtThumb;
|
|
|
|
$isImages = true;
|
|
|
|
}
|
|
|
|
|
2021-03-09 14:04:59 +00:00
|
|
|
|
2021-03-09 12:54:20 +00:00
|
|
|
$gameData = new GameData();
|
|
|
|
$gameData->game_name = $title;
|
2021-03-09 14:04:59 +00:00
|
|
|
$gameData->game_link = ZipFileHandler($gameFile);
|
2021-03-09 12:54:20 +00:00
|
|
|
$gameData->description = $desc;
|
|
|
|
if($isImages) $gameData->img = $thumbnailFileNewName;
|
|
|
|
$gameData->is_web_Based = $isWebBased;
|
|
|
|
$gameData->save();
|
|
|
|
|
|
|
|
$group->gameData()->associate($gameData);
|
|
|
|
|
|
|
|
$group->save();
|
2021-03-09 12:17:18 +00:00
|
|
|
|
2021-03-09 12:54:20 +00:00
|
|
|
if($isImages){
|
|
|
|
rename($thumbnailFileTmp,"../../../Frontend/images/".$thumbnailFileNewName);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}else{
|
|
|
|
echo "Der var en fejl med at uploade din file";
|
|
|
|
}
|
|
|
|
}else{
|
|
|
|
echo "Wrong file type";
|
2021-03-08 13:20:56 +00:00
|
|
|
}
|
2021-03-09 12:54:20 +00:00
|
|
|
|
2021-03-08 13:20:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|