mirror of
https://github.com/Daichimarukana/uwuzu.git
synced 2026-06-05 19:44:41 +00:00
620 lines
20 KiB
PHP
620 lines
20 KiB
PHP
<?php
|
|
|
|
|
|
function createUniqId(){
|
|
list($msec, $sec) = explode(" ", microtime());
|
|
$hashCreateTime = $sec.floor($msec*1000000);
|
|
|
|
$hashCreateTime = strrev($hashCreateTime);
|
|
|
|
return base_convert($hashCreateTime,10,36);
|
|
}
|
|
|
|
require('../db.php');
|
|
|
|
// タイムゾーン設定
|
|
date_default_timezone_set('Asia/Tokyo');
|
|
|
|
// 変数の初期化
|
|
$datetime = array();
|
|
$user_name = null;
|
|
$message = array();
|
|
$message_data = null;
|
|
$error_message = array();
|
|
$pdo = null;
|
|
$stmt = null;
|
|
$res = null;
|
|
$option = null;
|
|
|
|
session_start();
|
|
|
|
$userid = $_SESSION['userid'];
|
|
$username = $_SESSION['username'];
|
|
|
|
try {
|
|
|
|
$option = array(
|
|
PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION,
|
|
PDO::MYSQL_ATTR_MULTI_STATEMENTS => false
|
|
);
|
|
$pdo = new PDO('mysql:charset=utf8mb4;dbname='.DB_NAME.';host='.DB_HOST , DB_USER, DB_PASS, $option);
|
|
|
|
} catch(PDOException $e) {
|
|
|
|
// 接続エラーのときエラー内容を取得する
|
|
$error_message[] = $e->getMessage();
|
|
}
|
|
|
|
if(isset($_SESSION['admin_login']) && $_SESSION['admin_login'] === true) {
|
|
|
|
$passQuery = $pdo->prepare("SELECT username,userid,loginid,admin FROM account WHERE userid = :userid");
|
|
$passQuery->bindValue(':userid', $_SESSION['userid']);
|
|
$passQuery->execute();
|
|
$res = $passQuery->fetch();
|
|
if(empty($res["userid"])){
|
|
header("Location: ../login.php");
|
|
exit;
|
|
}elseif($_SESSION['loginid'] === $res["loginid"]){
|
|
// セッションに値をセット
|
|
$userid = $_SESSION['userid']; // セッションに格納されている値をそのままセット
|
|
$username = $_SESSION['username']; // セッションに格納されている値をそのままセット
|
|
$_SESSION['admin_login'] = true;
|
|
$_SESSION['userid'] = $userid;
|
|
$_SESSION['username'] = $username;
|
|
$_SESSION['loginid'] = $res["loginid"];
|
|
setcookie('userid', $userid, time() + 60 * 60 * 24 * 14);
|
|
setcookie('username', $username, time() + 60 * 60 * 24 * 14);
|
|
setcookie('loginid', $res["loginid"], time() + 60 * 60 * 24 * 14);
|
|
setcookie('admin_login', true, time() + 60 * 60 * 24 * 14);
|
|
}else{
|
|
header("Location: ../login.php");
|
|
exit;
|
|
}
|
|
|
|
|
|
} elseif (isset($_COOKIE['admin_login']) && $_COOKIE['admin_login'] == true) {
|
|
|
|
$passQuery = $pdo->prepare("SELECT username,userid,loginid,admin FROM account WHERE userid = :userid");
|
|
$passQuery->bindValue(':userid', $_COOKIE['userid']);
|
|
$passQuery->execute();
|
|
$res = $passQuery->fetch();
|
|
if(empty($res["userid"])){
|
|
header("Location: ../login.php");
|
|
exit;
|
|
}elseif($_COOKIE['loginid'] === $res["loginid"]){
|
|
// セッションに値をセット
|
|
$userid = $_COOKIE['userid']; // クッキーから取得した値をセット
|
|
$username = $_COOKIE['username']; // クッキーから取得した値をセット
|
|
$_SESSION['admin_login'] = true;
|
|
$_SESSION['userid'] = $userid;
|
|
$_SESSION['username'] = $username;
|
|
$_SESSION['loginid'] = $res["loginid"];
|
|
setcookie('userid', $userid, time() + 60 * 60 * 24 * 14);
|
|
setcookie('username', $username, time() + 60 * 60 * 24 * 14);
|
|
setcookie('loginid', $res["loginid"], time() + 60 * 60 * 24 * 14);
|
|
setcookie('admin_login', true, time() + 60 * 60 * 24 * 14);
|
|
}else{
|
|
header("Location: ../login.php");
|
|
exit;
|
|
}
|
|
|
|
|
|
} else {
|
|
// ログインが許可されていない場合、ログインページにリダイレクト
|
|
header("Location: ../login.php");
|
|
exit;
|
|
}
|
|
if(empty($userid)){
|
|
header("Location: ../login.php");
|
|
exit;
|
|
}
|
|
if(empty($username)){
|
|
header("Location: ../login.php");
|
|
exit;
|
|
}
|
|
|
|
$ueuseid = str_replace('!', '', $_GET['ueuseid']);
|
|
$touserid = str_replace('~', '', $_GET['touser']);
|
|
|
|
|
|
if( !empty($_POST['btn_submit']) ) {
|
|
|
|
$ueuse = $_POST['ueuse'];
|
|
|
|
// メッセージの入力チェック
|
|
if( empty($ueuse) ) {
|
|
$error_message[] = '内容を入力してください。';
|
|
} else {
|
|
|
|
// 文字数を確認
|
|
if( 1024 < mb_strlen($ueuse, 'UTF-8') ) {
|
|
$error_message[] = '内容は1024文字以内で入力してください。';
|
|
}
|
|
}
|
|
|
|
|
|
if (empty($_FILES['upload_images']['name'])) {
|
|
$photo1 = "none";
|
|
} else {
|
|
// アップロードされたファイル情報
|
|
$uploadedFile = $_FILES['upload_images'];
|
|
|
|
// アップロードされたファイルの拡張子を取得
|
|
$extension = pathinfo($uploadedFile['name'], PATHINFO_EXTENSION);
|
|
|
|
// 新しいファイル名を生成(uniqid + 拡張子)
|
|
$newFilename = uniqid() . '-'.$userid.'.' . $extension;
|
|
|
|
// 保存先のパスを生成
|
|
$uploadedPath = '../ueuseimages/' . $newFilename;
|
|
|
|
// ファイルを移動
|
|
$result = move_uploaded_file($uploadedFile['tmp_name'], $uploadedPath);
|
|
|
|
if ($result) {
|
|
$photo1 = $uploadedPath; // 保存されたファイルのパスを使用
|
|
} else {
|
|
$error_message[] = 'アップロード失敗!(1)エラーコード:' . $uploadedFile['error'].'<br>'.var_dump($_FILES['upload_images']);
|
|
}
|
|
}
|
|
|
|
if (empty($_FILES['upload_images2']['name'])) {
|
|
$photo2 = "none";
|
|
} else {
|
|
|
|
if (empty($_FILES['upload_images']['name'])){
|
|
$error_message[] = '画像1から画像を選択してください!!!';
|
|
}
|
|
// アップロードされたファイル情報
|
|
$uploadedFile2 = $_FILES['upload_images2'];
|
|
|
|
if( 10000000 < $uploadedFile2["size"] ) {
|
|
$error_message[] = 'ファイルサイズが大きすぎます!';
|
|
}
|
|
// アップロードされたファイルの拡張子を取得
|
|
$extension2 = pathinfo($uploadedFile2['name'], PATHINFO_EXTENSION);
|
|
|
|
// 新しいファイル名を生成(uniqid + 拡張子)
|
|
$newFilename2 = uniqid() . '-'.$userid.'.' . $extension2;
|
|
|
|
// 保存先のパスを生成
|
|
$uploadedPath2 = '../ueuseimages/' . $newFilename2;
|
|
|
|
// ファイルを移動
|
|
$result2 = move_uploaded_file($uploadedFile2['tmp_name'], $uploadedPath2);
|
|
|
|
if ($result2) {
|
|
$photo2 = $uploadedPath2; // 保存されたファイルのパスを使用
|
|
} else {
|
|
$error_message[] = 'アップロード失敗!(2)エラーコード:' . $uploadedFile2['error'].'<br>'.var_dump($_FILES['upload_images']);
|
|
}
|
|
}
|
|
|
|
|
|
if (empty($_FILES['upload_videos1']['name'])) {
|
|
$video1 = "none";
|
|
} else {
|
|
// アップロードされたファイル情報
|
|
$uploadedFile3 = $_FILES['upload_videos1'];
|
|
|
|
// アップロードされたファイルの拡張子を取得
|
|
$extension3 = strtolower(pathinfo($uploadedFile3['name'], PATHINFO_EXTENSION)); // 小文字に変換
|
|
|
|
// サポートされている動画フォーマットの拡張子を配列で定義
|
|
$supportedExtensions = array("mp4", "avi", "mov", "webm");
|
|
|
|
if (in_array($extension3, $supportedExtensions)) {
|
|
// 正しい拡張子の場合、新しいファイル名を生成
|
|
$newFilename3 = uniqid() . '-'.$userid.'.' . $extension3;
|
|
// 保存先のパスを生成
|
|
$uploadedPath3 = '../ueusevideos/' . $newFilename3;
|
|
|
|
// ファイルを移動
|
|
$result3 = move_uploaded_file($uploadedFile3['tmp_name'], $uploadedPath3);
|
|
|
|
if ($result3) {
|
|
$video1 = $uploadedPath3; // 保存されたファイルのパスを使用
|
|
} else {
|
|
$error_message[] = 'アップロード失敗!エラーコード:' . $uploadedFile3['error'];
|
|
}
|
|
} else {
|
|
$error_message[] = '対応していないファイル形式です!';
|
|
}
|
|
|
|
|
|
}
|
|
|
|
if( empty($error_message) ) {
|
|
|
|
// 書き込み日時を取得
|
|
$datetime = date("Y-m-d H:i:s");
|
|
$uniqid = createUniqId();
|
|
$abi = "none";
|
|
|
|
// トランザクション開始
|
|
$pdo->beginTransaction();
|
|
|
|
try {
|
|
|
|
// SQL作成
|
|
$stmt = $pdo->prepare("INSERT INTO ueuse (username, account, uniqid, rpuniqid, ueuse, photo1, photo2, video1, datetime, abi) VALUES (:username, :account, :uniqid, :rpuniqid, :ueuse, :photo1, :photo2, :video1, :datetime, :abi)");
|
|
|
|
$stmt->bindParam(':username', $username, PDO::PARAM_STR);
|
|
$stmt->bindParam(':account', $userid, PDO::PARAM_STR);
|
|
$stmt->bindParam(':uniqid', $uniqid, PDO::PARAM_STR);
|
|
$stmt->bindParam(':rpuniqid', $ueuseid, PDO::PARAM_STR);
|
|
$stmt->bindParam(':ueuse', $ueuse, PDO::PARAM_STR);
|
|
|
|
$stmt->bindParam(':photo1', $photo1, PDO::PARAM_STR);
|
|
$stmt->bindParam(':photo2', $photo2, PDO::PARAM_STR);
|
|
$stmt->bindParam(':video1', $video1, PDO::PARAM_STR);
|
|
$stmt->bindParam(':datetime', $datetime, PDO::PARAM_STR);
|
|
|
|
$stmt->bindParam(':abi', $abi, PDO::PARAM_STR);
|
|
|
|
// SQLクエリの実行
|
|
$res = $stmt->execute();
|
|
|
|
// コミット
|
|
$res = $pdo->commit();
|
|
|
|
$pdo->beginTransaction();
|
|
|
|
$msg = ''.$ueuse.'';
|
|
$title = ''.$userid.'さんが返信しました!';
|
|
$url = $_SERVER['REQUEST_URI'];
|
|
$userchk = 'none';
|
|
// 通知用SQL作成
|
|
$stmt = $pdo->prepare("INSERT INTO notification (touserid, msg, url, datetime, userchk, title) VALUES (:touserid, :msg, :url, :datetime, :userchk, :title)");
|
|
|
|
$stmt->bindParam(':touserid', $touserid, PDO::PARAM_STR);
|
|
$stmt->bindParam(':msg', $msg, PDO::PARAM_STR);
|
|
$stmt->bindParam(':url', $url, PDO::PARAM_STR);
|
|
$stmt->bindParam(':userchk', $userchk, PDO::PARAM_STR);
|
|
$stmt->bindParam(':title', $title, PDO::PARAM_STR);
|
|
|
|
$stmt->bindParam(':datetime', $datetime, PDO::PARAM_STR);
|
|
|
|
// SQLクエリの実行
|
|
$res = $stmt->execute();
|
|
|
|
// コミット
|
|
$res = $pdo->commit();
|
|
|
|
} catch(Exception $e) {
|
|
|
|
// エラーが発生した時はロールバック
|
|
$pdo->rollBack();
|
|
}
|
|
|
|
if( $res ) {
|
|
$url = (empty($_SERVER['HTTPS']) ? 'http://' : 'https://') . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];
|
|
header("Location:".$url."");
|
|
exit;
|
|
} else {
|
|
$error_message[] = $e->getMessage();
|
|
}
|
|
|
|
// プリペアドステートメントを削除
|
|
$stmt = null;
|
|
}
|
|
}
|
|
|
|
if( !empty($_POST['logout']) ) {
|
|
if (isset($_SERVER['HTTP_COOKIE'])) {
|
|
$cookies = explode(';', $_SERVER['HTTP_COOKIE']);
|
|
foreach($cookies as $cookie) {
|
|
$parts = explode('=', $cookie);
|
|
$name = trim($parts[0]);
|
|
setcookie($name, '', time()-1000);
|
|
setcookie($name, '', time()-1000, '/');
|
|
}
|
|
}
|
|
// リダイレクト先のURLへ転送する
|
|
$url = '../index.php';
|
|
header('Location: ' . $url, true, 303);
|
|
|
|
// すべての出力を終了
|
|
exit;
|
|
}
|
|
|
|
|
|
|
|
// データベースの接続を閉じる
|
|
$pdo = null;
|
|
|
|
?>
|
|
<!DOCTYPE html>
|
|
<html lang="ja">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<link rel="stylesheet" href="../css/home.css">
|
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.0/jquery.min.js"></script>
|
|
<meta name="viewport" content="width=device-width,initial-scale=1">
|
|
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
|
<link rel="apple-touch-icon" type="image/png" href="../favicon/apple-touch-icon-180x180.png">
|
|
<link rel="icon" type="image/png" href="../favicon/icon-192x192.png">
|
|
<title>ID <?php echo htmlspecialchars($ueuseid, ENT_QUOTES, 'UTF-8'); ?> のユーズ - uwuzu</title>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
<?php require('../require/leftbox.php');?>
|
|
<main class="outer">
|
|
<?php if( !empty($error_message) ): ?>
|
|
<ul class="errmsg">
|
|
<?php foreach( $error_message as $value ): ?>
|
|
<p>・ <?php echo $value; ?></p>
|
|
<?php endforeach; ?>
|
|
</ul>
|
|
<?php endif; ?>
|
|
|
|
<div class="emojibox">
|
|
<h1>返信</h1>
|
|
</div>
|
|
|
|
<form method="post" enctype="multipart/form-data">
|
|
<div class="sendbox">
|
|
<textarea id="ueuse" placeholder="へんし~ん!!!" name="ueuse"><?php if( !empty($_SESSION['ueuse']) ){ echo htmlspecialchars( $_SESSION['ueuse'], ENT_QUOTES, 'UTF-8'); } ?></textarea>
|
|
<p>画像のEXIF情報(位置情報など)は削除されません。<br>情報漏洩に気をつけてくださいね…</p>
|
|
<div class="fxbox">
|
|
<label for="upload_images" id="images">
|
|
<img src="../img/sysimage/image_1.svg">
|
|
<input type="file" name="upload_images" id ="upload_images" accept="image/*">
|
|
</label>
|
|
<label for="upload_images2" id="images2">
|
|
<img src="../img/sysimage/image_1.svg">
|
|
<input type="file" name="upload_images2" id ="upload_images2" accept="image/*">
|
|
</label>
|
|
<label for="upload_videos1" id="videos1">
|
|
<img src="../img/sysimage/video_1.svg">
|
|
<input type="file" name="upload_videos1" id ="upload_videos1" accept="video/*">
|
|
</label>
|
|
|
|
<input type="submit" class="ueusebtn" name="btn_submit" value="返信する">
|
|
</div>
|
|
</div>
|
|
</form>
|
|
<script>
|
|
document.getElementById("upload_videos1").addEventListener('change', function(e){
|
|
var file_reader = new FileReader();
|
|
// ファイルの読み込みを行ったら実行
|
|
file_reader.addEventListener('load', function(e) {
|
|
console.log(e.target.result);
|
|
const element = document.querySelector('#videos1');
|
|
const createElement = '<p>動画を選択しました。</p>';
|
|
element.insertAdjacentHTML('afterend', createElement);
|
|
});
|
|
file_reader.readAsText(e.target.files[0]);
|
|
});
|
|
document.getElementById("upload_images2").addEventListener('change', function(e){
|
|
var file_reader = new FileReader();
|
|
// ファイルの読み込みを行ったら実行
|
|
file_reader.addEventListener('load', function(e) {
|
|
console.log(e.target.result);
|
|
const element = document.querySelector('#images2');
|
|
const createElement = '<p>画像を選択しました。</p>';
|
|
element.insertAdjacentHTML('afterend', createElement);
|
|
});
|
|
file_reader.readAsText(e.target.files[0]);
|
|
});
|
|
document.getElementById("upload_images").addEventListener('change', function(e){
|
|
var file_reader = new FileReader();
|
|
// ファイルの読み込みを行ったら実行
|
|
file_reader.addEventListener('load', function(e) {
|
|
console.log(e.target.result);
|
|
const element = document.querySelector('#images');
|
|
const createElement = '<p>画像を選択しました。</p>';
|
|
element.insertAdjacentHTML('afterend', createElement);
|
|
});
|
|
file_reader.readAsText(e.target.files[0]);
|
|
});
|
|
</script>
|
|
|
|
<section class="inner">
|
|
<div id="postContainer">
|
|
|
|
</div>
|
|
</section>
|
|
|
|
|
|
<div id="myDelModal" class="modal">
|
|
<div class="modal-content">
|
|
<p>ユーズを削除しますか?</p>
|
|
<form class="btn_area" method="post" id="deleteForm">
|
|
<input type="button" id="deleteButton" class="fbtn_no" name="delete" value="削除">
|
|
<input type="button" id="cancelButton" class="fbtn" value="キャンセル">
|
|
</form>
|
|
</div>
|
|
</div>
|
|
|
|
<div id="myAbiModal" class="modal">
|
|
<div class="modal-content">
|
|
<p>ユーズに追記しますか?</p>
|
|
<p>※追記は削除出来ません。</p>
|
|
<form method="post" id="AbiForm">
|
|
<textarea id="abitexts" placeholder="なに追記する~?" name="abi"><?php if( !empty($_SESSION['abi']) ){ echo htmlspecialchars( $_SESSION['abi'], ENT_QUOTES, 'UTF-8'); } ?></textarea>
|
|
<div class="btn_area">
|
|
<input type="submit" id="AbiAddButton" class="fbtn_no" name="abi" value="追記">
|
|
<input type="button" id="AbiCancelButton" class="fbtn" value="キャンセル">
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
|
|
</main>
|
|
|
|
<?php require('../require/rightbox.php');?>
|
|
<?php require('../require/botbox.php');?>
|
|
</body>
|
|
<script>
|
|
$(document).ready(function() {
|
|
loadPosts();
|
|
|
|
var pageNumber = 1;
|
|
var isLoading = false;
|
|
|
|
function loadPosts() {
|
|
if (isLoading) return;
|
|
isLoading = true;
|
|
var ueuseid = '<?php echo $ueuseid; ?>';
|
|
var userid = '<?php echo $userid; ?>';
|
|
$.ajax({
|
|
url: '../nextpage/ueusepage.php', // PHPファイルへのパス
|
|
method: 'GET',
|
|
data: { page: pageNumber, id: ueuseid ,userid: userid},
|
|
dataType: 'html',
|
|
success: function(response) {
|
|
$('#postContainer').append(response);
|
|
pageNumber++;
|
|
isLoading = false;
|
|
}
|
|
});
|
|
}
|
|
|
|
$('.outer').on('scroll', function() {
|
|
var innerHeight = $('.inner').innerHeight(), //内側の要素の高さ
|
|
outerHeight = $('.outer').innerHeight(), //外側の要素の高さ
|
|
outerBottom = innerHeight - outerHeight; //内側の要素の高さ - 外側の要素の高さ
|
|
if (outerBottom <= $('.outer').scrollTop()) {
|
|
var elem = document.getElementById("noueuse");
|
|
|
|
if (elem === null){
|
|
// 存在しない場合の処理
|
|
loadPosts();
|
|
} else {
|
|
// 存在する場合の処理
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
|
|
$(document).on('click', '.favbtn, .favbtn_after', function(event) {
|
|
|
|
event.preventDefault();
|
|
|
|
var postUniqid = $(this).data('uniqid');
|
|
var userid = '<?php echo $userid; ?>';
|
|
var likeCountElement = $(this).find('.like-count'); // いいね数を表示する要素
|
|
|
|
var isLiked = $(this).hasClass('favbtn_after'); // 現在のいいねの状態を判定
|
|
|
|
var $this = $(this); // ボタン要素を変数に格納
|
|
|
|
$.ajax({
|
|
url: '../favorite/favorite.php',
|
|
method: 'POST',
|
|
data: { uniqid: postUniqid, userid: userid }, // ここに自分のユーザーIDを指定
|
|
dataType: 'json',
|
|
success: function(response) {
|
|
if (response.success) {
|
|
// いいね成功時の処理
|
|
if (isLiked) {
|
|
$this.removeClass('favbtn_after'); // クラスを削除していいねを取り消す
|
|
$this.find('img').attr('src', '../img/sysimage/favorite_1.svg'); // 画像を元の画像に戻す
|
|
} else {
|
|
$this.addClass('favbtn_after'); // クラスを追加していいねを追加する
|
|
$this.find('img').attr('src', '../img/sysimage/favorite_2.svg'); // 画像を新しい画像に置き換える
|
|
}
|
|
|
|
var newFavoriteList = response.newFavorite.split(',');
|
|
var likeCount = newFavoriteList.length - 1;
|
|
likeCountElement.text(likeCount); // いいね数を更新
|
|
} else {
|
|
// いいね失敗時の処理
|
|
}
|
|
}.bind(this), // コールバック内でthisが適切な要素を指すようにbindする
|
|
error: function() {
|
|
// エラー時の処理
|
|
}
|
|
});
|
|
});
|
|
|
|
var modal = document.getElementById('myDelModal');
|
|
var deleteButton = document.getElementById('deleteButton');
|
|
var cancelButton = document.getElementById('cancelButton'); // 追加
|
|
|
|
$(document).on('click', '.delbtn', function (event) {
|
|
modal.style.display = 'block';
|
|
|
|
var uniqid2 = $(this).attr('data-uniqid2');
|
|
var postElement = $(this).closest('.ueuse');
|
|
|
|
deleteButton.addEventListener('click', () => {
|
|
modal.style.display = 'none';
|
|
|
|
$.ajax({
|
|
url: '../delete/delete.php',
|
|
method: 'POST',
|
|
data: { uniqid: uniqid2 },
|
|
dataType: 'json',
|
|
success: function (response) {
|
|
if (response.success) {
|
|
postElement.remove();
|
|
} else {
|
|
// 削除失敗時の処理
|
|
}
|
|
},
|
|
error: function () {
|
|
// エラー時の処理
|
|
}
|
|
});
|
|
});
|
|
|
|
cancelButton.addEventListener('click', () => { // 追加
|
|
modal.style.display = 'none';
|
|
});
|
|
});
|
|
|
|
|
|
var abimodal = document.getElementById('myAbiModal');
|
|
var AbiAddButton = document.getElementById('AbiAddButton');
|
|
var AbiCancelButton = document.getElementById('AbiCancelButton');
|
|
|
|
$(document).on('click', '.addabi', function (event) {
|
|
|
|
abimodal.style.display = 'block';
|
|
|
|
var uniqid2 = $(this).attr('data-uniqid2');
|
|
var postAbiElement = $(this).closest('.addabi');
|
|
|
|
AbiCancelButton.addEventListener('click', () => {
|
|
abimodal.style.display = 'none';
|
|
});
|
|
|
|
$('#AbiForm').off('submit').on('submit', function (event) {
|
|
|
|
event.preventDefault();
|
|
|
|
var abitext = document.getElementById("abitexts").value;
|
|
|
|
if(abitext == ""){
|
|
abimodal.style.display = 'none';
|
|
}else{
|
|
$.ajax({
|
|
url: '../abi/addabi.php',
|
|
method: 'POST',
|
|
data: { uniqid: uniqid2, abitext: abitext},
|
|
dataType: 'json',
|
|
success: function (response) {
|
|
console.log(response); // レスポンス内容をコンソールに表示
|
|
if (response.success) {
|
|
abimodal.style.display = 'none';
|
|
postAbiElement.remove();
|
|
|
|
} else {
|
|
|
|
}
|
|
},
|
|
error: function (xhr, status, error) {
|
|
|
|
}
|
|
});
|
|
}
|
|
});
|
|
});
|
|
|
|
});
|
|
|
|
</script>
|
|
</html>
|