forked from devcordde/devmarkt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
220 lines (142 loc) · 6.27 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
<?php
include_once('pdo.php');
include_once('php/login.inc.php');
include_once('php/token.inc.php');
include_once('php/checklogin.php');
include_once('php/request.inc.php');
include_once('php/devmarkt.class.php');
$mysql = new MySQL();
$base_url = getenv("BOT_BASE_URI");
$discordInvite = "https://discord.gg/PZaG3FS";
?>
<!DOCTYPE HTML>
<html lang="de">
<head>
<title>DevCord - Devmarkt</title>
<link rel="shortcut icon" type="image/x-icon" href="assets/img/favicon.png">
<link rel="stylesheet" href="assets/css/style.css">
<meta charset="utf-8"/>
<meta name="description" content="Interface des Devmarktes für den DevCord-Discord. Hier kannst du Anfragen in den Devmarkt schicken, die vor Veröffentlichung geprüft werden."/>
<meta name="author" content="T1Il"/>
<meta name="copyright" content="T1Il"/>
<meta property="og:title" content="DevCord Devmarkt für Developer und Serverbetreiber"/>
<meta property="og:description" content="Interface des Devmarktes für den DevCord-Discord. Hier kannst du Anfragen in den Devmarkt schicken, die vor Veröffentlichung geprüft werden."/>
<meta property="og:site_name" content="DevCord Devmarkt"/>
<meta property="og:image" content="<?php echo $base_url; ?>/assets/img/favicon.png">
<script src="assets/js/index.js"></script>
</head>
<body>
<div class="form">
<?php if(!check()) { ?>
<h3>Logge<br> dich<br> ein</h3>
<a href="login.php"><button>Login</button></a>
<?php } else {
$token = new UserTokenHandler($_SESSION['token']);
$login = new User($token->getDiscordID());
$request_template = array("Title"=>"","Description"=>"","Color"=>"","Link"=>"");
if(isset($_GET['requestID'])) {
$request = new DevmarktRequest(htmlentities($_GET['requestID']));
if($request->getApplicant()->getDiscordId() == $login->getDiscordId() || $login->isModerator()) {
$request_template["Title"] = $request->getTitle();
$request_template["Description"] = $request->getDescription();
$request_template["Color"] = $request->getColor();
$request_template["Link"] = $request->getURL();
}
}
if($login->isModerator()) {
$devmarkt = new Devmarkt($login);
$unresolvedRequests = $devmarkt->getUnresolvedRequests();
$uRS = "";
?>
<h5>Nicht bearbeitete Anfragen: </h5>
<?php
foreach($unresolvedRequests as $request) {
$uRS .= "<a href=case.php?req_id=".htmlentities($request['req_id']).">" . htmlentities($request['title']) ."</a><br> ";
}
echo $uRS;
}
if (!$login->inGuild(getenv("GUILD_ID"))) {
?>
<h4><a href="<?php echo $discordInvite; ?>">Du musst dem Discord beitreten, um diesen Service zu nutzen.</a>
</h4>
<?php
} else if ($login->isBlocked()) {
?>
<h4>Der Devmarkt ist zurzeit leider nicht für dich verfügbar. //</h4>
<?php
} else if ($login->isOnCoolDown() && !($login->isModerator())) {
$request = new DevmarktRequest($login->getLastAcceptedEntry()[0]);
$datum = date("d.m.y", $request->getProcessedDate());
$cooldowndate = $request->getProcessedDate() + 86400 * 30;
$cdd = date("d.m.y - H:i", $cooldowndate);
?>
<h4>Deine Anfrage wurde zuletzt am <?php echo $datum; ?> bearbeitet. Warte bitte bis zum <?php echo $cdd; ?>
(<a href="case.php?req_id=<?php echo $request->req_id; ?>">Letzter Eintrag</a>)<br>
Wenn du glaubst, dass dies ein Fehler ist, wende dich bitte an das Devmarkt-Moderatoren-Team.
</h4>
<?php
} else {
?>
<form id="form" method="POST" action="php/devmarkt.inc.php">
<?php
$login->isOnCoolDown();
?>
<h3 class="dv">Devmarkt-Anfrage einreichen</h3>
<br>
<h4>Hallo <?php echo htmlentities($login->getUsername()); ?>,</h4>
<p><strong>bitte achte bei deiner Anfrage auf eine angemessene sprachliche Richtigkeit. <br>Als Hilfe kannst du das <a href="https://languagetool.org/">LanguageTool</a> nutzen.</strong></p>
<br>
<label>
<input type="text" min="10" name="titel" minlength="5" maxlength="50" placeholder="Titel deiner Einreichung" value="<?php echo $request_template["Title"]; ?>">
</label>
<br>
<br>
<div style="display:flex">
<label for="color"><?php
$color = random_color();
?></label><input id="color" type="color" onchange="changeColor()" name="color" value="#<?php if($request_template["Color"] != "") { echo $request_template["Color"]; } else echo $color; ?>" style="background-color: #<?php echo $color; ?>">
<select name="type">
<option value="Suche">Suche</option>
<option value="Gebot">Gebot</option>
<option value="Sonstiges">Sonstiges</option>
</select>
</div>
<br>
<br>
<textarea oninput="checkInput('<?php echo getenv("BOT_BASE_URI") . '/strlen.php'; ?>',<?php echo getenv("MAX_DESCRIPTION_SIZE") - 96; ?>)" id="desc" name="beschreibung" class="beschreibung" minlength="100" maxlength="<?php echo getenv("MAX_DESCRIPTION_SIZE")-96; ?>" required><?php echo $request_template['Description']; ?></textarea>
<p id="length"></p>
<br>
<br>
<input oninput="checkAdditionalURL()" id="additional_url" type="url" name="additional_link" placeholder="Link mit weiteren Informationen">
<br><br>
<?php
if($login->isModerator()) {
?>
<input type="checkbox" name="everyone" placeholder="Everyone" > @Everyone-Ping</input>
<?php
}
?>
<br>
<br>
<button type="submit" class="send">Anfrage einreichen</button>
</form>
</div>
<?php }
} ?>
<footer>
<p><a href="https://github.com/T1Il/devcord_devmarkt/">T1Il</a> 20<?php echo date('y'); ?> (v1.5)</p>
<br>
<a href="impressum.html">Impressum</a>/<a href="datenschutz.html">Datenschutzerklärung</a>
</footer>
</body>
</html>
<?php
function random_color_part(): string
{
return str_pad( dechex( mt_rand( 0, 255 ) ), 2, '0', STR_PAD_LEFT);
}
function random_color(): string
{
return random_color_part() . random_color_part() . random_color_part();
}
?>