mirror of
https://github.com/Daichimarukana/uwuzu.git
synced 2026-06-05 03:24:41 +00:00
197 lines
5.7 KiB
PHP
197 lines
5.7 KiB
PHP
<?php
|
|
$servernamefile = "../server/servername.txt";
|
|
|
|
function createUniqId(){
|
|
list($msec, $sec) = explode(" ", microtime());
|
|
$hashCreateTime = $sec.floor($msec*1000000);
|
|
|
|
$hashCreateTime = strrev($hashCreateTime);
|
|
|
|
return base_convert($hashCreateTime,10,36);
|
|
}
|
|
require('../db.php');
|
|
|
|
// 変数の初期化
|
|
$datetime = array();
|
|
$user_name = null;
|
|
$message = array();
|
|
$message_data = null;
|
|
$error_message = array();
|
|
$pdo = null;
|
|
$stmt = null;
|
|
$res = null;
|
|
$option = null;
|
|
|
|
session_start();
|
|
|
|
//------------------------------------------
|
|
try {
|
|
|
|
$option = array(
|
|
PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION,
|
|
PDO::MYSQL_ATTR_MULTI_STATEMENTS => false
|
|
);
|
|
$pdo = new PDO('mysql:charset=UTF8;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;
|
|
}
|
|
|
|
if (!empty($pdo)) {
|
|
$sql = "SELECT emojiname,emojiinfo,emojidate FROM emoji ORDER BY emojidate DESC";
|
|
$message_array = $pdo->query($sql);
|
|
|
|
while ($row = $message_array->fetch(PDO::FETCH_ASSOC)) {
|
|
|
|
$messages[] = $row;
|
|
}
|
|
}
|
|
|
|
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">
|
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.0/jquery.min.js"></script>
|
|
|
|
<link rel="stylesheet" href="../css/home.css">
|
|
<title>絵文字一覧 - <?php echo file_get_contents($servernamefile);?></title>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
<?php require('../require/leftbox.php');?>
|
|
<main>
|
|
<?php if( !empty($error_message) ): ?>
|
|
<ul class="errmsg">
|
|
<?php foreach( $error_message as $value ): ?>
|
|
<p>・ <?php echo $value; ?></p>
|
|
<?php endforeach; ?>
|
|
</ul>
|
|
<?php endif; ?>
|
|
|
|
<section>
|
|
<div class="emojibox">
|
|
<h1>絵文字一覧</h1>
|
|
<div class="emojizone">
|
|
<?php
|
|
if(!empty($messages)){
|
|
foreach ($messages as $value) {
|
|
echo '<div class="emjtex">';
|
|
echo '<div class="fx">';
|
|
echo '<img src="../emoji/emojiimage.php?emoji=' . urlencode($value["emojiname"]) . '">';
|
|
echo '<h3>:'.$value["emojiname"].':</h3>';
|
|
echo '</div>';
|
|
echo '<p>'.$value["emojiinfo"].'</p>';
|
|
echo '</div>';
|
|
}
|
|
}else{
|
|
echo '<div class="tokonone" id="noueuse"><p>カスタム絵文字がありません</p></div>';
|
|
}
|
|
?>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
</main>
|
|
|
|
<?php require('../require/rightbox.php');?>
|
|
<?php require('../require/botbox.php');?>
|
|
|
|
</body>
|
|
|
|
</html>
|