aboutsummaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorMarcin Zelent <zelent.marcin@gmail.com>2018-03-16 17:53:32 +0100
committerMarcin Zelent <zelent.marcin@gmail.com>2018-03-16 17:53:32 +0100
commit1ab2b90b02705e206680b5428bf1fbaec6438132 (patch)
tree8ee964fdf84ff49c22ac6449a178da9d1e67eeb0 /app
parented01011dfb563e7d8ab13b6a0718eed7bf857880 (diff)
Removed old files.
Diffstat (limited to 'app')
-rw-r--r--app/.htaccess7
-rw-r--r--app/AppCache.php7
-rw-r--r--app/AppKernel.php54
-rw-r--r--app/Resources/views/base.html.twig33
-rw-r--r--app/Resources/views/default/AllData.html.twig35
-rw-r--r--app/Resources/views/default/LastWeekData.html.twig35
-rw-r--r--app/Resources/views/default/TrainSchedule.html.twig28
-rw-r--r--app/Resources/views/default/index.html.twig34
-rw-r--r--app/config/config.yml69
-rw-r--r--app/config/config_dev.yml41
-rw-r--r--app/config/config_prod.yml22
-rw-r--r--app/config/config_test.yml16
-rw-r--r--app/config/parameters.yml12
-rw-r--r--app/config/parameters.yml.dist19
-rw-r--r--app/config/routing.yml3
-rw-r--r--app/config/routing_dev.yml14
-rw-r--r--app/config/security.yml24
-rw-r--r--app/config/services.yml38
18 files changed, 0 insertions, 491 deletions
diff --git a/app/.htaccess b/app/.htaccess
deleted file mode 100644
index fb1de45..0000000
--- a/app/.htaccess
+++ /dev/null
@@ -1,7 +0,0 @@
-<IfModule mod_authz_core.c>
- Require all denied
-</IfModule>
-<IfModule !mod_authz_core.c>
- Order deny,allow
- Deny from all
-</IfModule>
diff --git a/app/AppCache.php b/app/AppCache.php
deleted file mode 100644
index 639ec2c..0000000
--- a/app/AppCache.php
+++ /dev/null
@@ -1,7 +0,0 @@
-<?php
-
-use Symfony\Bundle\FrameworkBundle\HttpCache\HttpCache;
-
-class AppCache extends HttpCache
-{
-}
diff --git a/app/AppKernel.php b/app/AppKernel.php
deleted file mode 100644
index ef068e0..0000000
--- a/app/AppKernel.php
+++ /dev/null
@@ -1,54 +0,0 @@
-<?php
-
-use Symfony\Component\HttpKernel\Kernel;
-use Symfony\Component\Config\Loader\LoaderInterface;
-
-class AppKernel extends Kernel
-{
- public function registerBundles()
- {
- $bundles = [
- new Symfony\Bundle\FrameworkBundle\FrameworkBundle(),
- new Symfony\Bundle\SecurityBundle\SecurityBundle(),
- new Symfony\Bundle\TwigBundle\TwigBundle(),
- new Symfony\Bundle\MonologBundle\MonologBundle(),
- new Symfony\Bundle\SwiftmailerBundle\SwiftmailerBundle(),
- new Doctrine\Bundle\DoctrineBundle\DoctrineBundle(),
- new Sensio\Bundle\FrameworkExtraBundle\SensioFrameworkExtraBundle(),
- new AppBundle\AppBundle(),
- ];
-
- if (in_array($this->getEnvironment(), ['dev', 'test'], true)) {
- $bundles[] = new Symfony\Bundle\DebugBundle\DebugBundle();
- $bundles[] = new Symfony\Bundle\WebProfilerBundle\WebProfilerBundle();
- $bundles[] = new Sensio\Bundle\DistributionBundle\SensioDistributionBundle();
-
- if ('dev' === $this->getEnvironment()) {
- $bundles[] = new Sensio\Bundle\GeneratorBundle\SensioGeneratorBundle();
- $bundles[] = new Symfony\Bundle\WebServerBundle\WebServerBundle();
- }
- }
-
- return $bundles;
- }
-
- public function getRootDir()
- {
- return __DIR__;
- }
-
- public function getCacheDir()
- {
- return dirname(__DIR__).'/var/cache/'.$this->getEnvironment();
- }
-
- public function getLogDir()
- {
- return dirname(__DIR__).'/var/logs';
- }
-
- public function registerContainerConfiguration(LoaderInterface $loader)
- {
- $loader->load($this->getRootDir().'/config/config_'.$this->getEnvironment().'.yml');
- }
-}
diff --git a/app/Resources/views/base.html.twig b/app/Resources/views/base.html.twig
deleted file mode 100644
index f8d8374..0000000
--- a/app/Resources/views/base.html.twig
+++ /dev/null
@@ -1,33 +0,0 @@
-<!DOCTYPE html>
-<html>
- <head>
- <meta charset="UTF-8" />
- <title>{% block title %}Welcome!{% endblock %}</title>
- {% block stylesheets %}{% endblock %}
- <link rel="icon" type="image/x-icon" href="{{ asset('favicon.ico') }}" />
- <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.6.1/css/bulma.min.css"/>
- </head>
- <body>
- <nav class="navbar" role="navigation" aria-label="main navigation" style="margin: 0 0 3em 0">
- <div class="navbar-brand">
- <a class="navbar-item" href="/">
- <img src="https://cdn3.iconfinder.com/data/icons/christmas-icon-set-pixel-perfect/64/christmas-color-12-512.png" alt="Pollutometer" width="50px" height="auto">
- <span>Pollutometer</span>
- </a>
- <a class="navbar-item" href="/AllData">
- <span>All Data</span>
- </a>
- <a class="navbar-item" href="/LastWeekData">
- <span>Last Week Data</span>
- </a>
- <a class="navbar-item" href="/TrainSchedule">
- <span>Train Schedule</span>
- </a>
- </div>
- </nav>
- <div class="container">
- {% block body %}{% endblock %}
- </div>
- {% block javascripts %}{% endblock %}
- </body>
-</html>
diff --git a/app/Resources/views/default/AllData.html.twig b/app/Resources/views/default/AllData.html.twig
deleted file mode 100644
index 7bc33af..0000000
--- a/app/Resources/views/default/AllData.html.twig
+++ /dev/null
@@ -1,35 +0,0 @@
-{% extends 'base.html.twig' %}
-
-{% block body %}
-<div class="columns">
- <div class="column is-narrow">
-<table class="table">
- <thead class="thead">
- <tr class="tr">
- <th>TimeStamp</th>
- <th>Co</th>
- <th>No</th>
- <th>So</th>
- </tr>
- </thead>
- <tbody class="tbody">
- <tr class="tr">
- {% for table in data %}
- <td class="td">{{ table.TimeStamp }}</td>
- <td class="td">{{ table.Co }}</td>
- <td class="td">{{ table.No }}</td>
- <td class="td">{{ table.So }}</td>
- </tr>
- </tbody>
- {% endfor %}
-</table>
- </div>
- <div class="column">
-<canvas id="ctx"></canvas>
- </div>
-</div>
-{% endblock %}
-{% block javascripts %}
- <script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.7.1/Chart.bundle.min.js"></script>
- <script src="{{ asset('js/AllDataChart.js') }}"></script
-{% endblock %} \ No newline at end of file
diff --git a/app/Resources/views/default/LastWeekData.html.twig b/app/Resources/views/default/LastWeekData.html.twig
deleted file mode 100644
index fdc6dd9..0000000
--- a/app/Resources/views/default/LastWeekData.html.twig
+++ /dev/null
@@ -1,35 +0,0 @@
-{% extends 'base.html.twig' %}
-
-{% block body %}
-<div class="columns">
- <div class="column is-narrow">
-<table class="table">
- <thead class="thead">
- <tr class="tr">
- <th>TimeStamp</th>
- <th>Co</th>
- <th>No</th>
- <th>So</th>
- </tr>
- </thead>
- <tbody class="tbody">
- <tr class="tr">
- {% for table in data %}
- <td class="td">{{ table.TimeStamp }}</td>
- <td class="td">{{ table.Co }}</td>
- <td class="td">{{ table.No }}</td>
- <td class="td">{{ table.So }}</td>
- </tr>
- </tbody>
- {% endfor %}
-</table>
- </div>
- <div class="column">
-<canvas id="ctx"></canvas>
- </div>
-</div>
-{% endblock %}
-{% block javascripts %}
- <script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.7.1/Chart.bundle.min.js"></script>
- <script src="{{ asset('js/LastWeekDataChart.js') }}"></script
-{% endblock %} \ No newline at end of file
diff --git a/app/Resources/views/default/TrainSchedule.html.twig b/app/Resources/views/default/TrainSchedule.html.twig
deleted file mode 100644
index efc94ec..0000000
--- a/app/Resources/views/default/TrainSchedule.html.twig
+++ /dev/null
@@ -1,28 +0,0 @@
-{% extends 'base.html.twig' %}
-
-{% block body %}
-<table class="table">
- <thead class="thead">
- <tr class="tr">
- <th>Name</th>
- <th>Time</th>
- <th>Date</th>
- <th>Destination</th>
- <th>AQI</th>
- </tr>
- </thead>
- <tbody class="tbody">
- <tr class="tr">
- {% for table in data %}
- <td class="td">{{ table.name }}</td>
- <td class="td">{{ table.time }}</td>
- <td class="td">{{ table.date }}</td>
- <td class="td">{{ table.finalStop }}</td>
- <td class="td">{{ table.direction }}</td>
- </tr>
- </tbody>
- {% endfor %}
-</table>
-{% endblock %}
-{% block javascripts %}
-{% endblock %} \ No newline at end of file
diff --git a/app/Resources/views/default/index.html.twig b/app/Resources/views/default/index.html.twig
deleted file mode 100644
index 176f519..0000000
--- a/app/Resources/views/default/index.html.twig
+++ /dev/null
@@ -1,34 +0,0 @@
-{% extends 'base.html.twig' %}
-
-{% block body %}
- <div class="columns">
- <div class="column">
- <table class="table">
- <thead class="thead">
- <tr class="tr">
- <th class="td">TimeStamp</th>
- <th class="td">Co</th>
- <th class="td">No</th>
- <th class="td">So</th>
- </tr>
- </thead>
- <tbody class="tbody">
- <tr id="latest" class="tr">
- <td class="td">{{ TimeStamp }}</td>
- <td class="td">{{ Co }}</td>
- <td class="td">{{ No }}</td>
- <td class="td">{{ So }}</td>
- </tr>
- </tbody>
- </table>
- <p id="aq">The current air quality index is <strong>{{ Aqi }}</strong></p>
- </div>
- <div class="column">
- <img src="https://www.ourair.org/wp-content/uploads/AQItable.gif">
- </div>
- </div>
-
-{% endblock %}
-{% block javascripts %}
- <script src="{{ asset('js/realtime.js') }}"></script>
-{% endblock %}
diff --git a/app/config/config.yml b/app/config/config.yml
deleted file mode 100644
index 4819c20..0000000
--- a/app/config/config.yml
+++ /dev/null
@@ -1,69 +0,0 @@
-imports:
- - { resource: parameters.yml }
- - { resource: security.yml }
- - { resource: services.yml }
-
-# Put parameters here that don't need to change on each machine where the app is deployed
-# https://symfony.com/doc/current/best_practices/configuration.html#application-related-configuration
-parameters:
- locale: en
-
-framework:
- #esi: ~
- #translator: { fallbacks: ['%locale%'] }
- secret: '%secret%'
- router:
- resource: '%kernel.project_dir%/app/config/routing.yml'
- strict_requirements: ~
- form: ~
- csrf_protection: ~
- validation: { enable_annotations: true }
- #serializer: { enable_annotations: true }
- templating:
- engines: ['twig']
- default_locale: '%locale%'
- trusted_hosts: ~
- session:
- # https://symfony.com/doc/current/reference/configuration/framework.html#handler-id
- handler_id: session.handler.native_file
- save_path: '%kernel.project_dir%/var/sessions/%kernel.environment%'
- fragments: ~
- http_method_override: true
- assets: ~
- php_errors:
- log: true
-
-# Twig Configuration
-twig:
- debug: '%kernel.debug%'
- strict_variables: '%kernel.debug%'
-
-# Doctrine Configuration
-doctrine:
- dbal:
- driver: pdo_mysql
- host: '%database_host%'
- port: '%database_port%'
- dbname: '%database_name%'
- user: '%database_user%'
- password: '%database_password%'
- charset: UTF8
- # if using pdo_sqlite as your database driver:
- # 1. add the path in parameters.yml
- # e.g. database_path: '%kernel.project_dir%/var/data/data.sqlite'
- # 2. Uncomment database_path in parameters.yml
- # 3. Uncomment next line:
- #path: '%database_path%'
-
- orm:
- auto_generate_proxy_classes: '%kernel.debug%'
- naming_strategy: doctrine.orm.naming_strategy.underscore
- auto_mapping: true
-
-# Swiftmailer Configuration
-swiftmailer:
- transport: '%mailer_transport%'
- host: '%mailer_host%'
- username: '%mailer_user%'
- password: '%mailer_password%'
- spool: { type: memory }
diff --git a/app/config/config_dev.yml b/app/config/config_dev.yml
deleted file mode 100644
index 3a43646..0000000
--- a/app/config/config_dev.yml
+++ /dev/null
@@ -1,41 +0,0 @@
-imports:
- - { resource: config.yml }
-
-framework:
- router:
- resource: '%kernel.project_dir%/app/config/routing_dev.yml'
- strict_requirements: true
- profiler: { only_exceptions: false }
-
-web_profiler:
- toolbar: true
- intercept_redirects: false
-
-monolog:
- handlers:
- main:
- type: stream
- path: '%kernel.logs_dir%/%kernel.environment%.log'
- level: debug
- channels: ['!event']
- console:
- type: console
- process_psr_3_messages: false
- channels: ['!event', '!doctrine', '!console']
- # To follow logs in real time, execute the following command:
- # `bin/console server:log -vv`
- server_log:
- type: server_log
- process_psr_3_messages: false
- host: 127.0.0.1:9911
- # uncomment to get logging in your browser
- # you may have to allow bigger header sizes in your Web server configuration
- #firephp:
- # type: firephp
- # level: info
- #chromephp:
- # type: chromephp
- # level: info
-
-#swiftmailer:
-# delivery_addresses: ['me@example.com']
diff --git a/app/config/config_prod.yml b/app/config/config_prod.yml
deleted file mode 100644
index 5d460ce..0000000
--- a/app/config/config_prod.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-imports:
- - { resource: config.yml }
-
-#doctrine:
-# orm:
-# metadata_cache_driver: apc
-# result_cache_driver: apc
-# query_cache_driver: apc
-
-monolog:
- handlers:
- main:
- type: fingers_crossed
- action_level: error
- handler: nested
- nested:
- type: stream
- path: '%kernel.logs_dir%/%kernel.environment%.log'
- level: debug
- console:
- type: console
- process_psr_3_messages: false
diff --git a/app/config/config_test.yml b/app/config/config_test.yml
deleted file mode 100644
index 2f6d925..0000000
--- a/app/config/config_test.yml
+++ /dev/null
@@ -1,16 +0,0 @@
-imports:
- - { resource: config_dev.yml }
-
-framework:
- test: ~
- session:
- storage_id: session.storage.mock_file
- profiler:
- collect: false
-
-web_profiler:
- toolbar: false
- intercept_redirects: false
-
-swiftmailer:
- disable_delivery: true
diff --git a/app/config/parameters.yml b/app/config/parameters.yml
deleted file mode 100644
index 355c026..0000000
--- a/app/config/parameters.yml
+++ /dev/null
@@ -1,12 +0,0 @@
-# This file is auto-generated during the composer install
-parameters:
- database_host: 127.0.0.1
- database_port: null
- database_name: symfony
- database_user: root
- database_password: null
- mailer_transport: smtp
- mailer_host: 'mail.cock.li:587'
- mailer_user: ***REMOVED***
- mailer_password: ***REMOVED***
- secret: ThisTokenIsNotSoSecretChangeIt
diff --git a/app/config/parameters.yml.dist b/app/config/parameters.yml.dist
deleted file mode 100644
index 2c20ddc..0000000
--- a/app/config/parameters.yml.dist
+++ /dev/null
@@ -1,19 +0,0 @@
-# This file is a "template" of what your parameters.yml file should look like
-# Set parameters here that may be different on each deployment target of the app, e.g. development, staging, production.
-# https://symfony.com/doc/current/best_practices/configuration.html#infrastructure-related-configuration
-parameters:
- database_host: 127.0.0.1
- database_port: ~
- database_name: symfony
- database_user: root
- database_password: ~
- # You should uncomment this if you want to use pdo_sqlite
- #database_path: '%kernel.project_dir%/var/data/data.sqlite'
-
- mailer_transport: smtp
- mailer_host: 127.0.0.1
- mailer_user: ~
- mailer_password: ~
-
- # A secret key that's used to generate certain security-related tokens
- secret: ThisTokenIsNotSoSecretChangeIt
diff --git a/app/config/routing.yml b/app/config/routing.yml
deleted file mode 100644
index 2ec067f..0000000
--- a/app/config/routing.yml
+++ /dev/null
@@ -1,3 +0,0 @@
-app:
- resource: '@AppBundle/Controller/'
- type: annotation
diff --git a/app/config/routing_dev.yml b/app/config/routing_dev.yml
deleted file mode 100644
index 20602eb..0000000
--- a/app/config/routing_dev.yml
+++ /dev/null
@@ -1,14 +0,0 @@
-_wdt:
- resource: '@WebProfilerBundle/Resources/config/routing/wdt.xml'
- prefix: /_wdt
-
-_profiler:
- resource: '@WebProfilerBundle/Resources/config/routing/profiler.xml'
- prefix: /_profiler
-
-_errors:
- resource: '@TwigBundle/Resources/config/routing/errors.xml'
- prefix: /_error
-
-_main:
- resource: routing.yml
diff --git a/app/config/security.yml b/app/config/security.yml
deleted file mode 100644
index 0e0b7cb..0000000
--- a/app/config/security.yml
+++ /dev/null
@@ -1,24 +0,0 @@
-# To get started with security, check out the documentation:
-# https://symfony.com/doc/current/security.html
-security:
-
- # https://symfony.com/doc/current/security.html#b-configuring-how-users-are-loaded
- providers:
- in_memory:
- memory: ~
-
- firewalls:
- # disables authentication for assets and the profiler, adapt it according to your needs
- dev:
- pattern: ^/(_(profiler|wdt)|css|images|js)/
- security: false
-
- main:
- anonymous: ~
- # activate different ways to authenticate
-
- # https://symfony.com/doc/current/security.html#a-configuring-how-your-users-will-authenticate
- #http_basic: ~
-
- # https://symfony.com/doc/current/security/form_login_setup.html
- #form_login: ~
diff --git a/app/config/services.yml b/app/config/services.yml
deleted file mode 100644
index 7ddee7c..0000000
--- a/app/config/services.yml
+++ /dev/null
@@ -1,38 +0,0 @@
-# Learn more about services, parameters and containers at
-# https://symfony.com/doc/current/service_container.html
-parameters:
- #parameter_name: value
-
-services:
- # default configuration for services in *this* file
- _defaults:
- # automatically injects dependencies in your services
- autowire: true
- # automatically registers your services as commands, event subscribers, etc.
- autoconfigure: true
- # this means you cannot fetch services directly from the container via $container->get()
- # if you need to do this, you can override this setting on individual services
- public: false
-
- # makes classes in src/AppBundle available to be used as services
- # this creates a service per class whose id is the fully-qualified class name
- AppBundle\:
- resource: '../../src/AppBundle/*'
- # you can exclude directories or files
- # but if a service is unused, it's removed anyway
- exclude: '../../src/AppBundle/{Entity,Repository,Tests}'
-
- # controllers are imported separately to make sure they're public
- # and have a tag that allows actions to type-hint services
- AppBundle\Controller\:
- resource: '../../src/AppBundle/Controller'
- public: true
- tags: ['controller.service_arguments']
-
- AppBundle\Utils\Aqi:
- public: false
-
- # add more services, or override services that need manual wiring
- # AppBundle\Service\ExampleService:
- # arguments:
- # $someArgument: 'some_value'