Game-Jaming/Backend/Controllers/keyWord/NewKeyWord.php

44 lines
1.2 KiB
PHP
Raw Normal View History

2021-03-05 09:52:42 +00:00
<?php
2021-03-16 11:46:44 +00:00
require_once "../../../bootstrap.php";
2021-03-11 12:20:10 +00:00
require_once "../Group/Group.php";
2021-03-05 09:52:42 +00:00
use Backend\Models\Group;
use Backend\Models\KeyWord;
session_start();
2021-03-05 09:52:42 +00:00
2021-03-16 11:46:44 +00:00
if (isLogin()) {
if(isset($_POST['submitKeyWord'])){
//Find the group id
2021-03-11 12:20:10 +00:00
$group = groupViaToken($_SESSION['token']);
//if statement to find out if the group have use all their keyWords
2021-03-11 12:20:10 +00:00
if(KeyWord::where('group_id', $group->id)->count()<$group->group_amount){
//Make a new keyword[Only to be used if you need to make a new of something]
$keyword = new KeyWord();
//Take the keyWord the user typed and set it equal to the keyword valuable
2021-03-08 12:09:50 +00:00
$keyword->key_word = $_POST['key_word'];
2021-03-05 09:52:42 +00:00
//Make foreign key from the groups table to the keyWords table
$keyword->group()->associate($group);
2021-03-05 09:52:42 +00:00
//Try to save it
if(!$keyword->save()){
2021-03-22 08:42:17 +00:00
echo http_response_code(500);
}else{
2021-03-22 08:42:17 +00:00
echo http_response_code(201);
}
2021-03-17 08:43:09 +00:00
}else{
2021-03-19 12:25:27 +00:00
echo "limited upload reached";
2021-03-22 08:42:17 +00:00
echo http_response_code(400);
}
2021-03-05 09:52:42 +00:00
2021-03-17 08:43:09 +00:00
}else{
2021-03-22 08:42:17 +00:00
echo http_response_code(400);
}
}else{
2021-03-22 08:42:17 +00:00
echo http_response_code(401);
}