-
Notifications
You must be signed in to change notification settings - Fork 0
/
view.php
executable file
·314 lines (286 loc) · 10.3 KB
/
view.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
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
<!DOCTYPE html>
<?php
//include('login.php'); // Includes Login Script
error_reporting(E_ALL);
ini_set('display_errors', '1');
session_start();
$ID = $_GET['id'];
$servername = "localhost";
$username = "DexterGCC";
$password = "dexterSQL@123";
$dbname = 'Userdata';
$conn = new mysqli($servername, $username, $password, $dbname);
// Check connection
if ($conn->connect_error)
{
die("Connection failed: " . $conn->connect_error);
}
$sql = "SELECT code from Submissions where ID='$ID'";
$result = $conn->query($sql);
$conn->close();
//if(isset($_SESSION['uname']))
//{
//}
?>
<html>
<head>
<title>Compile and Execute your program...</title>
<!-- Font Awesome -->
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css">
<!-- Bootstrap core CSS -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.2.1/css/bootstrap.min.css" rel="stylesheet">
<!-- Material Design Bootstrap -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/mdbootstrap/4.7.0/css/mdb.min.css" rel="stylesheet">
<link rel="shortcut icon" type="image/png" href="logo.png"/>
</head>
<body>
<!--Login-->
<div class="modal fade" id="modalLoginForm" tabindex="-1" role="dialog" aria-labelledby="myModalLabel"
aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header text-center">
<h4 class="modal-title w-100 font-weight-bold">Sign in</h4>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body mx-3">
<div class="md-form mb-5">
<i class="fas fa-envelope prefix grey-text"></i>
<input id="uname" type="email" id="defaultForm-email" class="form-control validate">
<label data-error="wrong" data-success="right" for="defaultForm-email">Your email</label>
</div>
<div class="md-form mb-4">
<i class="fas fa-lock prefix grey-text"></i>
<input id="password" type="password" id="defaultForm-pass" class="form-control validate">
<label data-error="wrong" data-success="right" for="defaultForm-pass">Your password</label>
</div>
</div>
<div class="modal-footer d-flex justify-content-center">
<button id = "loginbutton"class="btn btn-default">Login</button>
</div>
</div>
</div>
</div>
<!--Loginends-->
<!--Navbar-->
<nav class="navbar navbar-expand-lg navbar-dark primary-color">
<div class="container">
<!-- Collapse button -->
<button class="navbar-toggler float-right" type="button" data-toggle="collapse" data-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<!-- Collapsible content -->
<div class="collapse navbar-collapse justify-content-center" id="navbarSupportedContent">
<!-- Links -->
<ul class="navbar-nav">
<li class="nav-item">
<button id = "tata" class="btn btn-outline-white btn-sm" data-toggle="modal" data-target="#modalLoginForm" type="button"><?php
if(isset($_SESSION['uname']))
{
echo $_SESSION['uname']."</button>";
}
else
echo "Login</button>";
?>
</li>
<li class="nav-item">
<button class="btn btn-outline-white btn-sm" type="button">Live Share</button>
</li>
<li class="nav-item">
<button class="btn btn-outline-white btn-sm" type="button">History</button>
</li>
<?php
if(isset($_SESSION['uname']))
{
echo '<li class="nav-item"><button id = "logout" class="btn btn-outline-white btn-sm" data-toggle="modal" data-target="#modalLoginForm" type="button">';
echo "Logout";
echo '</button>';
}
?>
</li>
</ul>
<!-- Links -->
</div>
<!-- CTA -->
</div>
</nav>
<!--/.Navbar-->
<!--/.Navbar -->
<div class="container">
<div class = "row">
<div class="col-md-6 col-lg-6">
<div class="form-group" >
<form action="" method="post" id="testform">
<h3>Code:</h3><textarea id = "code" name="data" data-editor="c_cpp" data-gutter="1" style="horizontal-align: center; " rows="10" cols="60"><?php
foreach($result as $row)
echo $row['code'];
?></textarea>
<br>
<h3>Input:</h3>
<textarea name="cusinput" style="vertical-align: center" rows="4" cols="60"></textarea>
<button type="button" id="post-btn">Compile!</button>
<?php
if(isset($_SESSION['uname']))
{
echo '<button type="button" id="save">Save</button>';
}
?>
</form>
</div>
</div>
<div class="col-md-6 col-lg-6" id="result">
<h3>Result:</h3>
<div id= "res">
<textarea name="res" style="vertical-align: center" rows="10" cols="60"></textarea>
</div>
<div id= "his">
<?php
if(isset($_SESSION['uname']))
{
$servername = "localhost";
$username = "DexterGCC";
$password = "dexterSQL@123";
$dbname = 'Userdata';
$uname = $_SESSION['uname'];
$conn = new mysqli($servername, $username, $password, $dbname);
// Check connection
if ($conn->connect_error)
{
die("Connection failed: " . $conn->connect_error);
}
$sql = "SELECT * from Submissions where user='$uname' ORDER BY Time DESC LIMIT 3";
$result = $conn->query($sql);
$conn->close();
echo "<h3>History:</h3>";
echo '<table class="table"><thead><tr><th scope="col">ID</th><th scope="col">Time</th></tr></thead><tbody>';
foreach($result as $row)
{
echo "<tr><th><a href='view.php?id=".$row['ID']."'>".$row['ID']."</a></th><th>".$row['Time']."</th></tr>";
}
echo "</tbody></table>";
//echo '<br><br><ul><li><b>Save code too see history</b></li></ul>';
}
else
echo "<br><br><ul><li><b>You're not logged in. Login to save and view code.</b></li></ul>";
?>
</div>
</div>
</div>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script>
$("#post-btn").click(function(){
$('#res').html( "Compiling...")
$.post("gpptest1.php", $("#testform").serialize(), function(data) {
$("#res").html("");
$('#res').append(data);
});
});
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/ace/1.2.9/ace.js"></script>
<!-- JQuery -->
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<!-- Bootstrap tooltips -->
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.4/umd/popper.min.js"></script>
<!-- Bootstrap core JavaScript -->
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.2.1/js/bootstrap.min.js"></script>
<!-- MDB core JavaScript -->
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/mdbootstrap/4.7.0/js/mdb.min.js"></script>
<script>
$(function() {
$('textarea[data-editor]').each(function() {
var textarea = $(this);
var mode = textarea.data('editor');
var editDiv = $('<div>', {
position: 'absolute',
width: textarea.width(),
height: textarea.height(),
'class': textarea.attr('class')
}).insertBefore(textarea);
textarea.css('display', 'none');
var editor = ace.edit(editDiv[0]);
editor.renderer.setShowGutter(textarea.data('gutter'));
editor.getSession().setValue(textarea.val());
editor.getSession().setMode("ace/mode/" + mode);
editor.setTheme("ace/theme/idle_fingers");
editor.getSession().on("change", function () {
textarea.val(editor.getSession().getValue());
});
});
});
</script>
<script>
$(document).ready(function(){
$('#loginbutton').click(function(){
var username = $('#uname').val();
var password = $('#password').val();
if(username != '' && password != '')
{
$.ajax({
url:"action.php",
method:"POST",
data: {username:username, password:password},
success:function(data)
{
//alert(data);
if(data == 'No')
{
alert("Wrong Data");
}
else
{
//alert(data);
$('#loginModal').hide();
location.reload();
}
}
});
}
else
{
alert("Both Fields are required");
}
});
$('#logout').click(function(){
var action = "logout";
$.ajax({
url:"logout.php",
method:"POST",
data:{action:action},
success:function()
{
location.reload();
}
});
});
$('#save').click(function(){
var username = document.getElementById('tata').innerHTML;
var code = $('#code').val();
console.log(username);
if(username != '' && code != '')
{
$.ajax({
url:"history.php",
method:"POST",
data: {username:username, code:code},
success:function(data)
{
$("#his").html("");
$('#his').append(data);
}
});
}
else
{
alert("Both Fields are required");
}
});
});
</script>
</body>
</html>