Skip to content

Commit 8a7da7d

Browse files
committed
codejudge preliminary code ready
0 parents  commit 8a7da7d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+19958
-0
lines changed

account.php

+52
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
<?php
2+
require_once('functions.php');
3+
if(!loggedin())
4+
header("Location: login.php");
5+
else
6+
include('header.php');
7+
connectdb();
8+
?>
9+
<li><a href="index.php">Problems</a></li>
10+
<li><a href="submissions.php">Submissions</a></li>
11+
<li><a href="scoreboard.php">Scoreboard</a></li>
12+
<li class="active"><a href="#">Account</a></li>
13+
<li><a href="logout.php">Logout</a></li>
14+
</ul>
15+
</div><!--/.nav-collapse -->
16+
</div>
17+
</div>
18+
</div>
19+
20+
<div class="container">
21+
<?php
22+
if(isset($_GET['changed']))
23+
echo("<div class=\"alert alert-success\">\nAccount settings updated!\n</div>");
24+
else if(isset($_GET['passerror']))
25+
echo("<div class=\"alert alert-error\">\nThe old password you entered is wrong. Please enter the correct password and try again.\n</div>");
26+
?>
27+
Account settings for <?php echo($_SESSION['username']);?><hr/>
28+
<form method="post" action="update.php">
29+
<input type="hidden" name="action" value="password"/>
30+
<h1><small>Change Password</small></h1>
31+
Old password: <input type="password" name="oldpass"/><br/>
32+
New password: <input type="password" name="newpass"/><br/><br/>
33+
<input class="btn" type="submit" name="submit" value="Change Password"/>
34+
</form>
35+
<hr/>
36+
37+
<form method="post" action="update.php">
38+
<input type="hidden" name="action" value="email"/>
39+
<h1><small>Change Email</small></h1>
40+
<?php
41+
$query = "SELECT email FROM users WHERE username='".$_SESSION['username']."'";
42+
$result = mysql_query($query);
43+
$fields = mysql_fetch_array($result);
44+
?>
45+
Email: <input type="email" name="email" value="<?php echo $fields['email'];?>"/><br/><br/>
46+
<input class="btn" type="submit" name="submit" value="Change Email"/>
47+
</form>
48+
</div> <!-- /container -->
49+
50+
<?php
51+
include('footer.php');
52+
?>

admin/createadmin.php

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<?php
2+
3+
function randomAlphaNum($length){
4+
5+
$rangeMin = pow(36, $length-1); //smallest number to give length digits in base 36
6+
$rangeMax = pow(36, $length)-1; //largest number to give length digits in base 36
7+
$base10Rand = mt_rand($rangeMin, $rangeMax); //get the random number
8+
$newRand = base_convert($base10Rand, 10, 36); //convert it
9+
10+
return $newRand; //spit it out
11+
12+
}
13+
14+
$salt=randomAlphaNum(5);
15+
$pass="admin";
16+
17+
mysql_connect("localhost","sankha93","abcd1993");
18+
mysql_select_db("codejudge") or die('!');
19+
$hash=crypt($pass,$salt);
20+
$sql="INSERT INTO `users` ( `username` , `salt` , `hash` , `email` ) VALUES ('$pass', '$salt', '$hash', '$email')";
21+
mysql_query($sql);
22+
mysql_close();

admin/footer.php

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<hr/>
2+
<div class="footer">Powered by Codejudge.</div>
3+
<!-- Le javascript
4+
================================================== -->
5+
<!-- Placed at the end of the document so the pages load faster -->
6+
<script src="../js/jquery.js"></script>
7+
<script src="../js/bootstrap-transition.js"></script>
8+
<script src="../js/bootstrap-alert.js"></script>
9+
<script src="../js/bootstrap-modal.js"></script>
10+
<script src="../js/bootstrap-dropdown.js"></script>
11+
<script src="../js/bootstrap-scrollspy.js"></script>
12+
<script src="../js/bootstrap-tab.js"></script>
13+
<script src="../js/bootstrap-tooltip.js"></script>
14+
<script src="../js/bootstrap-popover.js"></script>
15+
<script src="../js/bootstrap-button.js"></script>
16+
<script src="../js/bootstrap-collapse.js"></script>
17+
<script src="../js/bootstrap-carousel.js"></script>
18+
<script src="../js/bootstrap-typeahead.js"></script>
19+
20+
21+
22+
</body></html>

admin/header.php

+50
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
<!DOCTYPE html>
2+
<html lang="en"><head>
3+
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
4+
<meta charset="utf-8">
5+
<title>Codejudge Admin Panel</title>
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7+
<meta name="description" content="">
8+
<meta name="author" content="">
9+
10+
<!-- Le styles -->
11+
<link href="../css/bootstrap.css" rel="stylesheet">
12+
<style>
13+
body {
14+
padding-top: 60px; /* 60px to make the container go all the way to the bottom of the topbar */
15+
}
16+
17+
.footer {
18+
text-align: center;
19+
font-size: 11px;
20+
}
21+
</style>
22+
<link href="../css/bootstrap-responsive.css" rel="stylesheet">
23+
24+
<!-- Le HTML5 shim, for IE6-8 support of HTML5 elements -->
25+
<!--[if lt IE 9]>
26+
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
27+
<![endif]-->
28+
29+
<!-- Le fav and touch icons -->
30+
<link rel="shortcut icon" href="http://twitter.github.com/bootstrap/assets/ico/favicon.ico">
31+
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="http://twitter.github.com/bootstrap/assets/ico/apple-touch-icon-144-precomposed.png">
32+
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="http://twitter.github.com/bootstrap/assets/ico/apple-touch-icon-114-precomposed.png">
33+
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="http://twitter.github.com/bootstrap/assets/ico/apple-touch-icon-72-precomposed.png">
34+
<link rel="apple-touch-icon-precomposed" href="http://twitter.github.com/bootstrap/assets/ico/apple-touch-icon-57-precomposed.png">
35+
</head>
36+
37+
<body>
38+
39+
<div class="navbar navbar-fixed-top">
40+
<div class="navbar-inner">
41+
<div class="container">
42+
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
43+
<span class="icon-bar"></span>
44+
<span class="icon-bar"></span>
45+
<span class="icon-bar"></span>
46+
</a>
47+
<a class="brand" href="#">Codejudge</a>
48+
<div class="nav-collapse">
49+
<ul class="nav">
50+

admin/index.php

+78
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
<?php
2+
require_once('../functions.php');
3+
if(!loggedin())
4+
header("Location: login.php");
5+
else if($_SESSION['username'] !== 'admin')
6+
header("Location: login.php");
7+
else
8+
include('header.php');
9+
connectdb();
10+
?>
11+
<li class="active"><a href="#">Admin Panel</a></li>
12+
<li><a href="users.php">Users</a></li>
13+
<li><a href="logout.php">Logout</a></li>
14+
</ul>
15+
</div><!--/.nav-collapse -->
16+
</div>
17+
</div>
18+
</div>
19+
20+
<div class="container">
21+
22+
<?php
23+
if(isset($_GET['changed']))
24+
echo("<div class=\"alert alert-success\">\nSettings Saved!\n</div>");
25+
else if(isset($_GET['passerror']))
26+
echo("<div class=\"alert alert-error\">\nThe old password is incorrect!\n</div>");
27+
?>
28+
<ul class="nav nav-tabs">
29+
<li class="active"><a href="#">General</a></li>
30+
<li><a href="problems.php">Problems</a></li>
31+
</ul>
32+
<div>
33+
<div>
34+
<form method="post" action="update.php">
35+
<?php
36+
$query = "SELECT name, accept, c, cpp, java, python FROM prefs";
37+
$result = mysql_query($query);
38+
$fields = mysql_fetch_array($result);
39+
?>
40+
<input type="hidden" name="action" value="settings"/>
41+
Name of event: <input name="name" type="text" value="<?php echo($fields['name']);?>"/><br/>
42+
<input name="accept" type="checkbox" <?php if($fields['accept']==1) echo("checked=\"true\"");?>/> <span class="label label-important">Accept submissions</span><br/>
43+
<h1><small>Languages</small></h1>
44+
<input name="c" type="checkbox" <?php if($fields['c']==1) echo("checked=\"true\"");?>/> C<br/>
45+
<input name="cpp" type="checkbox" <?php if($fields['cpp']==1) echo("checked=\"true\"");?>/> C++<br/>
46+
<input name="java" type="checkbox" <?php if($fields['java']==1) echo("checked=\"true\"");?>/> Java<br/>
47+
<input name="python" type="checkbox" <?php if($fields['python']==1) echo("checked=\"true\"");?>/> Python<br/><br/>
48+
<input class="btn" type="submit" name="submit" value="Save Settings"/>
49+
</form>
50+
<hr/>
51+
52+
<form method="post" action="update.php">
53+
<input type="hidden" name="action" value="password"/>
54+
<h1><small>Change Password</small></h1>
55+
Old password: <input type="password" name="oldpass"/><br/>
56+
New password: <input type="password" name="newpass"/><br/><br/>
57+
<input class="btn" type="submit" name="submit" value="Change Password"/>
58+
</form>
59+
<hr/>
60+
61+
<form method="post" action="update.php">
62+
<input type="hidden" name="action" value="email"/>
63+
<h1><small>Change Email</small></h1>
64+
<?php
65+
$query = "SELECT email FROM users WHERE username='admin'";
66+
$result = mysql_query($query);
67+
$fields = mysql_fetch_array($result);
68+
?>
69+
Email: <input type="email" name="email" value="<?php echo $fields['email'];?>"/><br/><br/>
70+
<input class="btn" type="submit" name="submit" value="Change Email"/>
71+
</form>
72+
</div>
73+
</div>
74+
</div> <!-- /container -->
75+
76+
<?php
77+
include('footer.php');
78+
?>

admin/login.php

+87
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,87 @@
1+
<?php
2+
require_once('../functions.php');
3+
if(loggedin() and $_SESSION['username'] == 'admin')
4+
header("Location: index.php");
5+
else if(isset($_POST['password'])) {
6+
connectdb();
7+
$query = "SELECT salt,hash FROM users WHERE username='admin'";
8+
$result = mysql_query($query);
9+
$fields = mysql_fetch_array($result);
10+
$currhash = crypt($_POST['password'], $fields['salt']);
11+
if($currhash == $fields['hash']) {
12+
$_SESSION['username'] = "admin";
13+
header("Location: index.php");
14+
} else
15+
header("Location: login.php?error=1");
16+
} else
17+
?>
18+
<!DOCTYPE html>
19+
<html lang="en"><head>
20+
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
21+
<meta charset="utf-8">
22+
<title>Codejudge Admin Panel Login</title>
23+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
24+
<meta name="description" content="">
25+
<meta name="author" content="">
26+
27+
<!-- Le styles -->
28+
<link href="../css/bootstrap.css" rel="stylesheet">
29+
<style>
30+
body {
31+
padding-top: 60px; /* 60px to make the container go all the way to the bottom of the topbar */
32+
}
33+
34+
.footer {
35+
text-align: center;
36+
font-size: 11px;
37+
}
38+
</style>
39+
<link href="../css/bootstrap-responsive.css" rel="stylesheet">
40+
41+
<!-- Le HTML5 shim, for IE6-8 support of HTML5 elements -->
42+
<!--[if lt IE 9]>
43+
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
44+
<![endif]-->
45+
46+
<!-- Le fav and touch icons -->
47+
<link rel="shortcut icon" href="http://twitter.github.com/bootstrap/assets/ico/favicon.ico">
48+
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="http://twitter.github.com/bootstrap/assets/ico/apple-touch-icon-144-precomposed.png">
49+
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="http://twitter.github.com/bootstrap/assets/ico/apple-touch-icon-114-precomposed.png">
50+
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="http://twitter.github.com/bootstrap/assets/ico/apple-touch-icon-72-precomposed.png">
51+
<link rel="apple-touch-icon-precomposed" href="http://twitter.github.com/bootstrap/assets/ico/apple-touch-icon-57-precomposed.png">
52+
</head>
53+
54+
<body>
55+
56+
<div class="navbar navbar-fixed-top">
57+
<div class="navbar-inner">
58+
<div class="container">
59+
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
60+
<span class="icon-bar"></span>
61+
<span class="icon-bar"></span>
62+
<span class="icon-bar"></span>
63+
</a>
64+
<a class="brand" href="#">Codejudge</a>
65+
</div>
66+
</div>
67+
</div>
68+
69+
<div class="container">
70+
71+
<?php
72+
if(isset($_GET['logout']))
73+
echo("<div class=\"alert alert-info\">\nYou have logged out successfully!\n</div>");
74+
else if(isset($_GET['error']))
75+
echo("<div class=\"alert alert-error\">\nIncorrect Password!\n</div>");
76+
?>
77+
<h1><small>Login</small></h1>
78+
<p>Please login to use the admin panel.</p><br/>
79+
<form method="post" action="login.php">
80+
Password: <input type="password" name="password"/><br/><br/>
81+
<input class="btn" type="submit" name="submit" value="Login"/>
82+
</form>
83+
</div> <!-- /container -->
84+
85+
<?php
86+
include('footer.php');
87+
?>

admin/logout.php

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?php
2+
session_start();
3+
$_SESSION=array();
4+
if(isset($_COOKIE[session_name()])) {
5+
setcookie(session_name(),"",time()-42000,'/');
6+
}
7+
session_destroy();
8+
header("Location: login.php?logout=1");
9+
?>

admin/preview.php

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<?php
2+
if($_POST['action'] == 'preview') {
3+
if($_POST['title']=="" and $_POST['text']=="")
4+
echo("<div class=\"alert alert-error\">You have not entered either the title or the problem text!</div>");
5+
else {
6+
include('../markdown.php');
7+
$out = Markdown($_POST['text']);
8+
echo("<hr/>\n<h1>".$_POST['title']."</h1>\n");
9+
echo($out);
10+
}
11+
} else if($_POST['action'] == 'code') {
12+
include('../functions.php');
13+
connectdb();
14+
echo("<hr/><h1><small>".$_POST['name']."</small></h1>\n");
15+
$query = "SELECT filename, soln FROM solve WHERE (username='".$_POST['uname']."' AND problem_id='".$_POST['id']."')";
16+
$result = mysql_query($query);
17+
$row = mysql_fetch_array($result);
18+
$str = str_replace("<", "&lt;", $row['soln']);
19+
echo("<strong>".$row['filename']."</strong><br/><br/>\n<pre>".str_replace(">", "&gt;", $str)."</pre>");
20+
}
21+
?>

0 commit comments

Comments
 (0)