mirror of
https://github.com/icecoder/ICEcoder.git
synced 2026-03-03 23:34:01 +01:00
Moving away from the idea of multiple user levels, users will either have full access or no access Swapped all userLevel session vars to a loggedIn var, which is a bool Makes things simpler and paves the way towards the new login screen (before you see any files, code etc)
75 lines
2.2 KiB
PHP
75 lines
2.2 KiB
PHP
<?php
|
|
session_start();
|
|
// $_SESSION['loggedIn'] = true;
|
|
if (!$_SESSION['loggedIn']) {
|
|
die("Sorry, you need to be logged in to use ICErepo");
|
|
}
|
|
|
|
$docRoot = $_SERVER['DOCUMENT_ROOT'];
|
|
$version = "0.7.2";
|
|
|
|
// AUTHENTICATION
|
|
// Can either be done by oauth, or username & password.
|
|
// oauth
|
|
$token = "";
|
|
// Basic
|
|
$username = "username";
|
|
$password = "password";
|
|
|
|
// REPOS & SERVER DIRS
|
|
// Here you identify the repo location and related path on your server
|
|
// (the last param is to identify which dropdown option to select by default).
|
|
$repos = array(
|
|
"mattpass/dirTree",$docRoot."/dirTree","",
|
|
"mattpass/CodeMirror2",$docRoot."/CodeMirror2","selected"
|
|
);
|
|
?>
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>ICErepo v<?php echo $version;?></title>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
<script src="lib/base64.js"></script>
|
|
<script src="lib/github.js"></script>
|
|
<script src="ice-repo.js"></script>
|
|
<link rel="stylesheet" type="text/css" href="ice-repo.css">
|
|
</head>
|
|
|
|
<body style="margin: 0; overflow: hidden" onLoad="doRepo(get('repos').value)">
|
|
|
|
<div class="blackMask" id="blackMask" style="display: block">
|
|
<div id="loadingMsgCenter" class="loadingMsgCenter">
|
|
<div id="loadingMsgContainer" class="loadingMsgContainer">
|
|
WORKING...
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="header">
|
|
<select name="repos" id="repos" onChange="doRepo(this.value)" style="margin: 20px 0 0 20px">
|
|
<?php
|
|
for ($i=0;$i<count($repos);$i+=3) {
|
|
echo '<option id="repo'.($i/3).'" value="'.$repos[$i].'@'.$repos[$i+1].'"';
|
|
echo $repos[$i+2]=="selected" ? ' selected' : '';
|
|
echo '>'.$repos[$i]."</option>\n";
|
|
}
|
|
?>
|
|
</select>
|
|
|
|
<div class="pullGithubSel" onClick="pullContent('selected')">Pull selected from Github</div>
|
|
<div class="version"><?php echo $version;?></div>
|
|
<img src="images/ice-repo.gif" alt="ICErepo" class="logo">
|
|
</div>
|
|
|
|
<form name="showRepo" action="contents.php" target="repo" method="POST">
|
|
<input type="hidden" name="token" value="<?php echo $token;?>">
|
|
<input type="hidden" name="username" value="<?php echo $username;?>">
|
|
<input type="hidden" name="password" value="<?php echo $password;?>">
|
|
<input type="hidden" name="repo" value="">
|
|
</form>
|
|
|
|
<iframe id="repo" class="repoFrame" frameborder="0"></iframe>
|
|
|
|
</body>
|
|
|
|
</html>
|