Browse Source

beginnings

Aaron Speer 7 years ago
parent
commit
1f9ed72477

+ 3 - 0
.gitignore

@@ -0,0 +1,3 @@
+/vendor/
+composer.lock
+config/config.php

+ 4 - 0
app/Controller.php

@@ -0,0 +1,4 @@
+<?php
+namespace App;
+class Controller {
+}

+ 21 - 0
app/Controllers/HomeController.php

@@ -0,0 +1,21 @@
+<?php
+namespace App\Controllers;
+
+use App\Models\HomeModel;
+use App\Controller;
+use App\Model;
+
+class HomeController extends Controller {
+
+  public function __construct($twig)
+  {
+    $this->twig = $twig;
+    $this->model = new HomeModel;
+  }
+
+  public function index(){
+    echo $this->twig->render('home.twig', array(
+			"messages" => $this->model->getMessages(),
+    ));
+  }
+}

+ 27 - 0
app/Model.php

@@ -0,0 +1,27 @@
+<?php
+namespace App;
+class Model {
+  public function sanitiseData($data)
+  {
+    global $conn;
+    $data = mysqli_real_escape_string($conn, $data);
+    $data = htmlspecialchars($data);
+    return $data;
+  }
+
+  public function getMessages()
+  {
+    return json_decode($_COOKIE["messages"]);
+    $_SESSION["messages"] = "";
+  }
+
+  public function setMessage($name, $content, $type)
+  {
+    global $_SESSION;
+    $passed = [$name, $content, $type];
+    $messages = json_decode($_SESSION["messages"]);
+    $messages[] = $passed;
+    $_SESSION["messages"] = json_encode($messages);
+    setcookie("messages", json_encode($messages), time() + 1, "/");
+  }
+}

+ 10 - 0
app/Models/HomeModel.php

@@ -0,0 +1,10 @@
+<?php
+namespace App\Models;
+use App\Model;
+class HomeModel extends Model
+{
+	public function __construct()
+	{
+
+	}
+}

+ 23 - 0
app/View.php

@@ -0,0 +1,23 @@
+<?php
+
+function viewError($name, $content, $type) {
+  return "<div class='alert alert-" . $type . "'> <a href='#' class='close' data-dismiss='alert' aria-label='close'>&times;</a>" . "<strong>" . $name . "</strong> " . $content . "</div>";
+}
+
+$function = new Twig_SimpleFunction('makeError', 'viewError');
+$twig->addFunction($function);
+
+
+$twig->addFunction(
+    new \Twig_SimpleFunction(
+        'form_token',
+        function($lock_to = null) {
+            static $csrf;
+            if ($csrf === null) {
+                $csrf = new AntiCSRF;
+            }
+            return $csrf->insertToken($lock_to, false);
+        },
+        ['is_safe' => ['html']]
+    )
+);

+ 12 - 0
composer.json

@@ -0,0 +1,12 @@
+{
+  "require":{
+    "twig/twig": "~1.0",
+    "ircmaxell/password-compat": "^1.0",
+    "altorouter/altorouter": "1.1.0"
+  },
+  "autoload": {
+    "psr-4": {
+      "App\\": "app"
+    }
+  }
+}

File diff suppressed because it is too large
+ 7 - 0
public/assets/bootstrap.min.js


File diff suppressed because it is too large
+ 5 - 0
public/assets/jquery.min.js


+ 32 - 0
public/assets/style.css

@@ -0,0 +1,32 @@
+.footer{
+  position: absolute;
+  bottom: 0;
+  width: 100%;
+  background-color: #f5f5f5;
+  position: absolute;
+  left: 0;
+  bottom: 0;
+  height: 80px;
+  width: 100%;
+}
+.footer p{
+  text-align: center;
+  margin-bottom: 0 !important;
+}
+.table th, td{
+  text-align: center;
+}
+body{
+  padding-top: 50px;
+  padding-bottom: 90px;
+  /*margin: 0 0 100px; /* bottom = footer height */
+}
+html {
+    position: relative;
+    min-height: 100%;
+}
+#tile {display: table}
+#text {
+  display: table-cell;
+  vertical-align: middle;
+ }

File diff suppressed because it is too large
+ 11 - 0
public/assets/yetibootstrap.min.css


+ 49 - 0
public/index.php

@@ -0,0 +1,49 @@
+<?php
+
+use App\Controllers\HomeController;
+use App\Controller;
+//use App\Models\HomeModel;
+
+$error_reporting = 1; // 1 = errors 0 = none
+if ($error_reporting == 1){
+  ini_set('display_errors', 1);
+  ini_set('display_startup_errors', 1);
+  error_reporting(E_ALL);}
+
+session_start();
+
+$_SESSION["messages"] = null;
+if (array_key_exists("messages", $_COOKIE)) {
+}
+else{
+  $_COOKIE["messages"] = null;
+}
+
+require(__DIR__ . "/../vendor/autoload.php");
+
+global $config;
+$config = parse_ini_file(__DIR__ . "/../config/config.php");
+
+$loader = new Twig_Loader_Filesystem(__DIR__ . "/../views/");
+$twig = new Twig_Environment($loader);
+$twig->addGlobal('config', $config);
+require(__DIR__ . "/../app/View.php");
+
+$router = new AltoRouter();
+$router->setBasePath('');
+$router->map('GET','/', "App\Controllers\HomeController#index", 'home');
+$match = $router->match();
+
+
+// not sure if code after this comment  is the best way to handle matched routes
+list( $controller, $action ) = explode( '#', $match['target'] );
+if ( is_callable(array($controller, $action)) ) {
+    $obj = new $controller($twig);
+    call_user_func_array(array($obj,$action), array($match['params']));
+} else if ($match['target']==''){
+    echo 'Error: no route was matched';
+    //possibly throw a 404 error
+} else {
+    echo 'Error: can not call '.$controller.'#'.$action;
+    //possibly throw a 404 error
+}

+ 14 - 0
views/home.twig

@@ -0,0 +1,14 @@
+{% extends "templates/app.twig" %}
+{% block content %}
+
+<div class="page-header">
+  <h1>Welcome to the SAIMUN 2019 Public Printing Web App</h1>
+</div>
+{% for message in messages %}
+  {{ makeError(message[0], message[1], message[2]) | raw }}
+{% endfor %}
+
+
+{% endblock %}
+{% block js %}
+{% endblock %}

+ 32 - 0
views/templates/app.twig

@@ -0,0 +1,32 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+  <title>SAIMUN Print</title>
+  <meta charset="utf-8">
+  <meta name="viewport" content="width=device-width, initial-scale=1">
+  <link rel="stylesheet" href="/assets/style.css">
+  <link rel="stylesheet" href="/assets/yetibootstrap.min.css" media="bogus">
+  <link rel="shortcut icon" type="image/x-icon" href="/assets/favicon.ico">
+</head>
+<body>
+  {% include "templates/partials/navigation.twig" %}
+  <div class="container">
+    {% block content %}{% endblock %}
+  </div>
+  <div class="footer">
+   <p class="text-muted"><br>SAIMUN Print<br>
+     Copyright <a href="mailto:ajamesspeer@gmail.com">Aaron Speer</a>, © 2016-{{ "now"|date("Y") }},<br>
+ </div>
+ <link rel="stylesheet" href="/assets/yetibootstrap.min.css">
+ <script src="/assets/jquery.min.js"></script>
+ <script src="/assets/bootstrap.min.js"></script>
+{% block js %}{% endblock %}
+{% if config["https"] %}
+<script>
+var host = "{{ config["host"] }}";
+if ((host == window.location.host) && (window.location.protocol != "https:"))
+    window.location.protocol = "https";
+</script>
+{% endif %}
+</body>
+</html>

+ 24 - 0
views/templates/partials/navigation.twig

@@ -0,0 +1,24 @@
+<nav class="navbar navbar-default navbar-fixed-top">
+<div class="container">
+  <div class="navbar-header">
+    <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#myNavbar">
+      <span class="icon-bar"></span>
+      <span class="icon-bar"></span>
+      <span class="icon-bar"></span>
+    </button>
+    <a  class="navbar-brand" href="/">SAIMUN 2019</a>
+  </div>
+  <div class="collapse navbar-collapse" id="myNavbar">
+    <ul class="nav navbar-nav">
+      {% if isLoggedIn %}
+      <li class = "noactive"><a href="/"></a></li>
+      {% endif %}
+    </ul>
+    <ul class="nav navbar-nav navbar-right">
+      {% if isLoggedIn %}
+      <li class="noactive"><a href="/"></a></li>
+      {% endif %}
+    </ul>
+  </div>
+</div>
+</nav>