working update
12
docker-compose.yml
Normal file
@ -0,0 +1,12 @@
|
||||
version: '3.8'
|
||||
services:
|
||||
RadioMasterWeb:
|
||||
image: radiomasterphp
|
||||
build: ./web
|
||||
volumes:
|
||||
- ./web:/var/www/html/
|
||||
ports:
|
||||
- 8000:80
|
||||
|
||||
# RadioMasterDb:
|
||||
#
|
4
web/.htaccess
Normal file
@ -0,0 +1,4 @@
|
||||
RewriteEngine on
|
||||
RewriteBase /
|
||||
RewriteCond %{REQUEST_FILENAME} !-f
|
||||
RewriteRule ^(.*)$ /index.php [L,QSA]
|
@ -1,8 +0,0 @@
|
||||
$container = new \wsos\structs\container();
|
||||
|
||||
$templates = $container->get("templateLoader");
|
||||
$context = $container->get("context");
|
||||
|
||||
$templates->load("info.html");
|
||||
$templates->render($context);
|
||||
$templates->show();
|
33
web/CONTROLLERS/dashboard.php
Normal file
@ -0,0 +1,33 @@
|
||||
<?php
|
||||
$container = new \wsos\structs\container();
|
||||
|
||||
$templates = $container->get("templateLoader");
|
||||
$context = $container->get("context");
|
||||
$auth = $container->get("auth");
|
||||
|
||||
// to show this page user must be logined
|
||||
$auth->requireLogin();
|
||||
|
||||
$context["successCount"] = 75;
|
||||
$context["planedCount"] = 15;
|
||||
$context["lastPlaned"] = 2;
|
||||
$context["failCount"] = 5;
|
||||
$context["observationsCount"] = 5;
|
||||
|
||||
// create planed template observations
|
||||
$planed = new \DAL\observation();
|
||||
$planed->status->set("planed");
|
||||
|
||||
$observationsTable = new \wsos\database\core\table(\DAL\observation::class);
|
||||
$planedTable = $observationsTable->query("status=?", [$planed->status->value]);
|
||||
|
||||
$observationsLocators = new \wsos\structs\vector();
|
||||
foreach($planedTable->values as $obs) {
|
||||
$observationsLocators->append($obs->locator->get());
|
||||
}
|
||||
|
||||
$context["planedLocators"] = json_encode($observationsLocators->values);
|
||||
|
||||
$templates->load("dashboard.html");
|
||||
$templates->render($context);
|
||||
$templates->show();
|
31
web/CONTROLLERS/login.php
Normal file
@ -0,0 +1,31 @@
|
||||
<?php
|
||||
$container = new \wsos\structs\container();
|
||||
|
||||
$templates = $container->get("templateLoader");
|
||||
$context = $container->get("context");
|
||||
$auth = $container->get("auth");
|
||||
|
||||
//add basic info to context
|
||||
$context["pagename"] = "login";
|
||||
$context["fail"] = false;
|
||||
$context["failInfo"] = [];
|
||||
|
||||
//pass login
|
||||
if (isset($_POST["username"]) && isset($_POST["password"])) {
|
||||
|
||||
if ($auth->login($_POST["username"], $_POST["password"])) {
|
||||
header("Location: /");
|
||||
die("logined");
|
||||
}
|
||||
|
||||
$context["fail"] = true;
|
||||
$context["failInfo"] = [
|
||||
"title" => "Login failed!",
|
||||
"description" => "Login failed because the user does not exist or the correct password was not used. Please try again."
|
||||
];
|
||||
}
|
||||
|
||||
$templates->load("login.html");
|
||||
$templates->render($context);
|
||||
$templates->show();
|
||||
?>
|
15
web/CONTROLLERS/observations.php
Normal file
@ -0,0 +1,15 @@
|
||||
<?php
|
||||
$container = new \wsos\structs\container();
|
||||
|
||||
$templates = $container->get("templateLoader");
|
||||
$context = $container->get("context");
|
||||
$auth = $container->get("auth");
|
||||
|
||||
// to show this page user must be logined
|
||||
$auth->requireLogin();
|
||||
|
||||
$context["observations"] = new \wsos\database\core\table(\DAL\observation::class);
|
||||
|
||||
$templates->load("observations.html");
|
||||
$templates->render($context);
|
||||
$templates->show();
|
@ -17,7 +17,7 @@
|
||||
$gain = 0
|
||||
) {
|
||||
parent::__construct($id);
|
||||
$this->object = new \wsos\database\types\reference($station, \DAL\station::class);
|
||||
$this->station = new \wsos\database\types\reference($station, \DAL\station::class);
|
||||
$this->antenna = new \wsos\database\types\reference($antenna, \DAL\antenna::class);
|
||||
|
||||
$this->centerFrequency = new \wsos\database\types\integer($centerFrequency);
|
||||
|
@ -6,7 +6,7 @@
|
||||
public \wsos\database\types\text $description;
|
||||
public \wsos\database\types\json $locator;
|
||||
|
||||
function __construct($id = null, $name = "", $description = "", $locator = ["tle" => null, "gps" => null, "url" => null]) {
|
||||
function __construct($id = null, $name = "", $description = "", $locator = []) {
|
||||
parent::__construct($id);
|
||||
$this->name = new \wsos\database\types\text($name);
|
||||
$this->description = new \wsos\database\types\text($description);
|
||||
|
@ -7,10 +7,10 @@
|
||||
public \wsos\database\types\text $description;
|
||||
public \wsos\database\types\json $locator; // TLE, GPS or URL locator if avaible
|
||||
|
||||
function __construct($id = null, $name = "", $type = null, $description = "", $locator = ["tle" => null, "gps" => null, "url" => null]) {
|
||||
function __construct($id = null, $name = "", $type = null, $description = "", $locator = []) {
|
||||
parent::__construct($id);
|
||||
$this->name = new \wsos\database\types\text($name);
|
||||
$this->type = new \wsos\database\types\reference($type, );
|
||||
$this->type = new \wsos\database\types\reference($type, \DAL\targetType::class);
|
||||
|
||||
$this->description = new \wsos\database\types\text($description);
|
||||
$this->locator = new \wsos\database\types\json($locator);
|
||||
|
@ -13,7 +13,7 @@
|
||||
|
||||
function __construct(
|
||||
$id = null,
|
||||
$object = null,
|
||||
$target = null,
|
||||
$antenna = null,
|
||||
$modulation = null,
|
||||
$dataType = null,
|
||||
@ -23,11 +23,11 @@
|
||||
$processPipe = null
|
||||
) {
|
||||
parent::__construct($id);
|
||||
$this->object = new \wsos\database\types\reference($object, \DAL\object::class);
|
||||
$this->target = new \wsos\database\types\reference($target, \DAL\target::class);
|
||||
$this->antenna = new \wsos\database\types\reference($antenna, \DAL\antenna::class);
|
||||
$this->modulation = new \wsos\database\types\reference($modulation, \DAL\modulation::class);
|
||||
$this->dataType = new \wsos\database\types\reference($dataType, \DAL\dataType::class);
|
||||
$this->object = new \wsos\database\types\reference($processPipe, \DAL\processPipe::class);
|
||||
$this->processPipe = new \wsos\database\types\reference($processPipe, \DAL\processPipe::class);
|
||||
|
||||
$this->centerFrequency = new \wsos\database\types\integer($centerFrequency);
|
||||
$this->bandwidth = new \wsos\database\types\integer($bandwidth);
|
||||
|
3
web/Dockerfile
Normal file
@ -0,0 +1,3 @@
|
||||
FROM php:7-apache
|
||||
|
||||
RUN a2enmod rewrite
|
12
web/VIEWS/blocks/alert-danger.html
Normal file
@ -0,0 +1,12 @@
|
||||
<div class="alert alert-danger" role="alert">
|
||||
<div class="d-flex">
|
||||
<div>
|
||||
<!-- Download SVG icon from http://tabler-icons.io/i/alert-circle -->
|
||||
<svg xmlns="http://www.w3.org/2000/svg" class="icon alert-icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"></path><path d="M3 12a9 9 0 1 0 18 0a9 9 0 0 0 -18 0"></path><path d="M12 8v4"></path><path d="M12 16h.01"></path></svg>
|
||||
</div>
|
||||
<div>
|
||||
<h4 class="alert-title">{% BIND item.title %}</h4>
|
||||
<div class="text-secondary">{% BIND item.description %}</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
10
web/VIEWS/blocks/nav-item.html
Normal file
@ -0,0 +1,10 @@
|
||||
<li class="nav-item {% IF url==item.url USE active %}">
|
||||
<a class="nav-link" href="{% BIND item.url %}" >
|
||||
<span class="nav-link-icon d-md-none d-lg-inline-block">
|
||||
<img class="icon" width="24" height="24" src="{% BIND item.icon %}"></svg>
|
||||
</span>
|
||||
<span class="nav-link-title">
|
||||
{% BIND item.name %}
|
||||
</span>
|
||||
</a>
|
||||
</li>
|
18
web/VIEWS/blocks/observation-item.html
Normal file
@ -0,0 +1,18 @@
|
||||
<tr onclick="location.href = '/observation/{% BIND item.id %}'">
|
||||
<td>{% BIND item.receiver.station.name %}</td>
|
||||
<td>{% BIND item.transmitter.target.name %}</td>
|
||||
<td>{% BIND item.transmitter.modulation.name %}</td>
|
||||
<td>{% BIND item.transmitter.dataType.name %}</td>
|
||||
<td>{% BIND item.transmitter.centerFrequency %}Hz</td>
|
||||
<td>
|
||||
<span class="badge
|
||||
{% IF item.status==fail USE bg-danger %}
|
||||
{% IF item.status==success USE bg-success %}
|
||||
{% IF item.status==recording USE bg-info %}
|
||||
{% IF item.status==decoding USE bg-warning %}
|
||||
{% IF item.status==planed USE bg-primary %}
|
||||
me-1"></span> {% BIND item.status %}
|
||||
</td>
|
||||
<td>{% BIND item.start %}</td>
|
||||
<td>{% BIND item.end %}</td>
|
||||
</tr>
|
594
web/VIEWS/dashboard.html
Normal file
@ -0,0 +1,594 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
{% INCLUDE layout/head.html %}
|
||||
<body>
|
||||
<div class="page">
|
||||
{% BINDINCLUDE layout/header.html logined %}
|
||||
|
||||
<div class="page-header d-print-none mt-4">
|
||||
<div class="container-xl">
|
||||
<div class="row g-2 align-items-center">
|
||||
<div class="col">
|
||||
<!-- Page pre-title -->
|
||||
<div class="page-pretitle">
|
||||
Overview
|
||||
</div>
|
||||
<h2 class="page-title">
|
||||
Dashboard
|
||||
</h2>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="page-body">
|
||||
<div class="container-xl">
|
||||
<div class="row row-deck row-cards">
|
||||
|
||||
<div class="col-sm-6 col-lg-3">
|
||||
<div class="card">
|
||||
<div class="card-body">
|
||||
<div class="d-flex align-items-center">
|
||||
<div class="subheader">Success</div>
|
||||
<div class="ms-auto lh-1">
|
||||
<span class="text-secondary">Last 7 days</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="h1 mb-3">{% BIND successCount %}</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="col-sm-6 col-lg-3">
|
||||
<div class="card">
|
||||
<div class="card-body">
|
||||
<div class="d-flex align-items-center">
|
||||
<div class="subheader">Fail</div>
|
||||
<div class="ms-auto lh-1">
|
||||
<span class="text-secondary">Last 7 days</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="h1 mb-3">{% BIND failCount %}</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="col-sm-6 col-lg-3">
|
||||
<div class="card">
|
||||
<div class="card-body">
|
||||
<div class="d-flex align-items-center">
|
||||
<div class="subheader">Planed</div>
|
||||
<div class="ms-auto lh-1">
|
||||
<span class="text-secondary">For {% BIND lastPlaned %} days</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="h1 mb-3">{% BIND planedCount %}</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="col-sm-6 col-lg-3">
|
||||
<div class="card">
|
||||
<div class="card-body">
|
||||
<div class="d-flex align-items-center">
|
||||
<div class="subheader">all</div>
|
||||
<div class="ms-auto lh-1">
|
||||
<span class="text-secondary">Last 7 days</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="h1 mb-3">{% BIND observationsCount %}</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="col-12">
|
||||
|
||||
</div>
|
||||
|
||||
<div class="col-lg-6">
|
||||
<div class="row row-cards">
|
||||
<div class="col-12">
|
||||
<div class="card">
|
||||
<div class="card-body">
|
||||
<p class="mb-3">Using Storage <strong>6854.45 MB </strong>of 8 GB</p>
|
||||
<div class="progress progress-separated mb-3">
|
||||
<div class="progress-bar bg-primary" role="progressbar" style="width: 44%" aria-label="Regular"></div>
|
||||
<div class="progress-bar bg-info" role="progressbar" style="width: 19%" aria-label="System"></div>
|
||||
<div class="progress-bar bg-success" role="progressbar" style="width: 9%" aria-label="Shared"></div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-auto d-flex align-items-center pe-2">
|
||||
<span class="legend me-2 bg-primary"></span>
|
||||
<span>Regular</span>
|
||||
<span class="d-none d-md-inline d-lg-none d-xxl-inline ms-2 text-secondary">915MB</span>
|
||||
</div>
|
||||
<div class="col-auto d-flex align-items-center px-2">
|
||||
<span class="legend me-2 bg-info"></span>
|
||||
<span>System</span>
|
||||
<span class="d-none d-md-inline d-lg-none d-xxl-inline ms-2 text-secondary">415MB</span>
|
||||
</div>
|
||||
<div class="col-auto d-flex align-items-center px-2">
|
||||
<span class="legend me-2 bg-success"></span>
|
||||
<span>Shared</span>
|
||||
<span class="d-none d-md-inline d-lg-none d-xxl-inline ms-2 text-secondary">201MB</span>
|
||||
</div>
|
||||
<div class="col-auto d-flex align-items-center ps-2">
|
||||
<span class="legend me-2"></span>
|
||||
<span>Free</span>
|
||||
<span class="d-none d-md-inline d-lg-none d-xxl-inline ms-2 text-secondary">612MB</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-6">
|
||||
<div class="card">
|
||||
<div class="card-header border-0">
|
||||
<div class="card-title">Planed targets map</div>
|
||||
</div>
|
||||
<div class="position-relative">
|
||||
<div id="map" style="height:400px;" class="position-absolute top-0 left-0 px-3 mt-1 w-100">
|
||||
|
||||
</div>
|
||||
|
||||
<script>
|
||||
var map = L.map('map').setView([0, 0], 1);
|
||||
var tragetIcon = L.icon({
|
||||
iconUrl: '/static/icons/satellite.svg',
|
||||
iconSize: [20, 20],
|
||||
shadowSize: [0, 0],
|
||||
iconAnchor: [10, 10],
|
||||
shadowAnchor: [10, 0],
|
||||
popupAnchor: [0, 0]
|
||||
});
|
||||
|
||||
L.tileLayer('https://tile.openstreetmap.org/{z}/{x}/{y}.png', {
|
||||
attribution: '© <a href="https://www.openstreetmap.org/copyright">OpenStreetMap</a> contributors'
|
||||
}).addTo(map);
|
||||
|
||||
var planedLocators = JSON.parse('{% BIND planedLocators %}'.replaceAll("\n", "\\\\n"));
|
||||
var targetsMarkers = [];
|
||||
|
||||
for (var i = 0; i < planedLocators.length; i++) {
|
||||
targetsMarkers.push(L.marker(map.getCenter(), {icon: tragetIcon}).bindPopup(planedLocators[i]["tle"].split("\\n")[0]).addTo(map));
|
||||
}
|
||||
|
||||
setInterval(function () {
|
||||
for (var i = 0; i < planedLocators.length; i++) {
|
||||
var planedLocator = planedLocators[i]["tle"].split("\\n");
|
||||
|
||||
var satrec = satellite.twoline2satrec(planedLocator[1], planedLocator[2]);
|
||||
|
||||
var positionAndVelocity = satellite.propagate(satrec, new Date());
|
||||
var gmst = satellite.gstime(new Date());
|
||||
|
||||
var positionEci = positionAndVelocity.position;
|
||||
var positionGd = satellite.eciToGeodetic(positionEci, gmst);
|
||||
|
||||
targetsMarkers[i].setLatLng([satellite.degreesLat(positionGd.latitude), satellite.degreesLong(positionGd.longitude)]);
|
||||
}
|
||||
}, 1000);
|
||||
</script>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="col-md-6 col-lg-4">
|
||||
<div class="card">
|
||||
<div class="card-header">
|
||||
<h3 class="card-title">Social Media Traffic</h3>
|
||||
</div>
|
||||
<table class="table card-table table-vcenter">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Network</th>
|
||||
<th colspan="2">Visitors</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>Instagram</td>
|
||||
<td>3,550</td>
|
||||
<td class="w-50">
|
||||
<div class="progress progress-xs">
|
||||
<div class="progress-bar bg-primary" style="width: 71.0%"></div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Twitter</td>
|
||||
<td>1,798</td>
|
||||
<td class="w-50">
|
||||
<div class="progress progress-xs">
|
||||
<div class="progress-bar bg-primary" style="width: 35.96%"></div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Facebook</td>
|
||||
<td>1,245</td>
|
||||
<td class="w-50">
|
||||
<div class="progress progress-xs">
|
||||
<div class="progress-bar bg-primary" style="width: 24.9%"></div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>TikTok</td>
|
||||
<td>986</td>
|
||||
<td class="w-50">
|
||||
<div class="progress progress-xs">
|
||||
<div class="progress-bar bg-primary" style="width: 19.72%"></div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Pinterest</td>
|
||||
<td>854</td>
|
||||
<td class="w-50">
|
||||
<div class="progress progress-xs">
|
||||
<div class="progress-bar bg-primary" style="width: 17.08%"></div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>VK</td>
|
||||
<td>650</td>
|
||||
<td class="w-50">
|
||||
<div class="progress progress-xs">
|
||||
<div class="progress-bar bg-primary" style="width: 13.0%"></div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Pinterest</td>
|
||||
<td>420</td>
|
||||
<td class="w-50">
|
||||
<div class="progress progress-xs">
|
||||
<div class="progress-bar bg-primary" style="width: 8.4%"></div>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="col-12">
|
||||
<div class="card">
|
||||
<div class="card-header">
|
||||
<h3 class="card-title">Invoices</h3>
|
||||
</div>
|
||||
<div class="card-body border-bottom py-3">
|
||||
<div class="d-flex">
|
||||
<div class="text-secondary">
|
||||
Show
|
||||
<div class="mx-2 d-inline-block">
|
||||
<input type="text" class="form-control form-control-sm" value="8" size="3" aria-label="Invoices count">
|
||||
</div>
|
||||
entries
|
||||
</div>
|
||||
<div class="ms-auto text-secondary">
|
||||
Search:
|
||||
<div class="ms-2 d-inline-block">
|
||||
<input type="text" class="form-control form-control-sm" aria-label="Search invoice">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="table-responsive">
|
||||
<table class="table card-table table-vcenter text-nowrap datatable">
|
||||
<thead>
|
||||
<tr>
|
||||
<th class="w-1"><input class="form-check-input m-0 align-middle" type="checkbox" aria-label="Select all invoices"></th>
|
||||
<th class="w-1">No. <!-- Download SVG icon from http://tabler-icons.io/i/chevron-up -->
|
||||
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-sm icon-thick" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"></path><path d="M6 15l6 -6l6 6"></path></svg>
|
||||
</th>
|
||||
<th>Invoice Subject</th>
|
||||
<th>Client</th>
|
||||
<th>VAT No.</th>
|
||||
<th>Created</th>
|
||||
<th>Status</th>
|
||||
<th>Price</th>
|
||||
<th></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td><input class="form-check-input m-0 align-middle" type="checkbox" aria-label="Select invoice"></td>
|
||||
<td><span class="text-secondary">001401</span></td>
|
||||
<td><a href="invoice.html" class="text-reset" tabindex="-1">Design Works</a></td>
|
||||
<td>
|
||||
<span class="flag flag-xs flag-country-us me-2"></span>
|
||||
Carlson Limited
|
||||
</td>
|
||||
<td>
|
||||
87956621
|
||||
</td>
|
||||
<td>
|
||||
15 Dec 2017
|
||||
</td>
|
||||
<td>
|
||||
<span class="badge bg-success me-1"></span> Paid
|
||||
</td>
|
||||
<td>$887</td>
|
||||
<td class="text-end">
|
||||
<span class="dropdown">
|
||||
<button class="btn dropdown-toggle align-text-top" data-bs-boundary="viewport" data-bs-toggle="dropdown">Actions</button>
|
||||
<div class="dropdown-menu dropdown-menu-end">
|
||||
<a class="dropdown-item" href="#">
|
||||
Action
|
||||
</a>
|
||||
<a class="dropdown-item" href="#">
|
||||
Another action
|
||||
</a>
|
||||
</div>
|
||||
</span>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><input class="form-check-input m-0 align-middle" type="checkbox" aria-label="Select invoice"></td>
|
||||
<td><span class="text-secondary">001402</span></td>
|
||||
<td><a href="invoice.html" class="text-reset" tabindex="-1">UX Wireframes</a></td>
|
||||
<td>
|
||||
<span class="flag flag-xs flag-country-gb me-2"></span>
|
||||
Adobe
|
||||
</td>
|
||||
<td>
|
||||
87956421
|
||||
</td>
|
||||
<td>
|
||||
12 Apr 2017
|
||||
</td>
|
||||
<td>
|
||||
<span class="badge bg-warning me-1"></span> Pending
|
||||
</td>
|
||||
<td>$1200</td>
|
||||
<td class="text-end">
|
||||
<span class="dropdown">
|
||||
<button class="btn dropdown-toggle align-text-top" data-bs-boundary="viewport" data-bs-toggle="dropdown">Actions</button>
|
||||
<div class="dropdown-menu dropdown-menu-end">
|
||||
<a class="dropdown-item" href="#">
|
||||
Action
|
||||
</a>
|
||||
<a class="dropdown-item" href="#">
|
||||
Another action
|
||||
</a>
|
||||
</div>
|
||||
</span>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><input class="form-check-input m-0 align-middle" type="checkbox" aria-label="Select invoice"></td>
|
||||
<td><span class="text-secondary">001403</span></td>
|
||||
<td><a href="invoice.html" class="text-reset" tabindex="-1">New Dashboard</a></td>
|
||||
<td>
|
||||
<span class="flag flag-xs flag-country-de me-2"></span>
|
||||
Bluewolf
|
||||
</td>
|
||||
<td>
|
||||
87952621
|
||||
</td>
|
||||
<td>
|
||||
23 Oct 2017
|
||||
</td>
|
||||
<td>
|
||||
<span class="badge bg-warning me-1"></span> Pending
|
||||
</td>
|
||||
<td>$534</td>
|
||||
<td class="text-end">
|
||||
<span class="dropdown">
|
||||
<button class="btn dropdown-toggle align-text-top" data-bs-boundary="viewport" data-bs-toggle="dropdown">Actions</button>
|
||||
<div class="dropdown-menu dropdown-menu-end">
|
||||
<a class="dropdown-item" href="#">
|
||||
Action
|
||||
</a>
|
||||
<a class="dropdown-item" href="#">
|
||||
Another action
|
||||
</a>
|
||||
</div>
|
||||
</span>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><input class="form-check-input m-0 align-middle" type="checkbox" aria-label="Select invoice"></td>
|
||||
<td><span class="text-secondary">001404</span></td>
|
||||
<td><a href="invoice.html" class="text-reset" tabindex="-1">Landing Page</a></td>
|
||||
<td>
|
||||
<span class="flag flag-xs flag-country-br me-2"></span>
|
||||
Salesforce
|
||||
</td>
|
||||
<td>
|
||||
87953421
|
||||
</td>
|
||||
<td>
|
||||
2 Sep 2017
|
||||
</td>
|
||||
<td>
|
||||
<span class="badge bg-secondary me-1"></span> Due in 2 Weeks
|
||||
</td>
|
||||
<td>$1500</td>
|
||||
<td class="text-end">
|
||||
<span class="dropdown">
|
||||
<button class="btn dropdown-toggle align-text-top" data-bs-boundary="viewport" data-bs-toggle="dropdown">Actions</button>
|
||||
<div class="dropdown-menu dropdown-menu-end">
|
||||
<a class="dropdown-item" href="#">
|
||||
Action
|
||||
</a>
|
||||
<a class="dropdown-item" href="#">
|
||||
Another action
|
||||
</a>
|
||||
</div>
|
||||
</span>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><input class="form-check-input m-0 align-middle" type="checkbox" aria-label="Select invoice"></td>
|
||||
<td><span class="text-secondary">001405</span></td>
|
||||
<td><a href="invoice.html" class="text-reset" tabindex="-1">Marketing Templates</a></td>
|
||||
<td>
|
||||
<span class="flag flag-xs flag-country-pl me-2"></span>
|
||||
Printic
|
||||
</td>
|
||||
<td>
|
||||
87956621
|
||||
</td>
|
||||
<td>
|
||||
29 Jan 2018
|
||||
</td>
|
||||
<td>
|
||||
<span class="badge bg-danger me-1"></span> Paid Today
|
||||
</td>
|
||||
<td>$648</td>
|
||||
<td class="text-end">
|
||||
<span class="dropdown">
|
||||
<button class="btn dropdown-toggle align-text-top" data-bs-boundary="viewport" data-bs-toggle="dropdown">Actions</button>
|
||||
<div class="dropdown-menu dropdown-menu-end">
|
||||
<a class="dropdown-item" href="#">
|
||||
Action
|
||||
</a>
|
||||
<a class="dropdown-item" href="#">
|
||||
Another action
|
||||
</a>
|
||||
</div>
|
||||
</span>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><input class="form-check-input m-0 align-middle" type="checkbox" aria-label="Select invoice"></td>
|
||||
<td><span class="text-secondary">001406</span></td>
|
||||
<td><a href="invoice.html" class="text-reset" tabindex="-1">Sales Presentation</a></td>
|
||||
<td>
|
||||
<span class="flag flag-xs flag-country-br me-2"></span>
|
||||
Tabdaq
|
||||
</td>
|
||||
<td>
|
||||
87956621
|
||||
</td>
|
||||
<td>
|
||||
4 Feb 2018
|
||||
</td>
|
||||
<td>
|
||||
<span class="badge bg-secondary me-1"></span> Due in 3 Weeks
|
||||
</td>
|
||||
<td>$300</td>
|
||||
<td class="text-end">
|
||||
<span class="dropdown">
|
||||
<button class="btn dropdown-toggle align-text-top" data-bs-boundary="viewport" data-bs-toggle="dropdown">Actions</button>
|
||||
<div class="dropdown-menu dropdown-menu-end">
|
||||
<a class="dropdown-item" href="#">
|
||||
Action
|
||||
</a>
|
||||
<a class="dropdown-item" href="#">
|
||||
Another action
|
||||
</a>
|
||||
</div>
|
||||
</span>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><input class="form-check-input m-0 align-middle" type="checkbox" aria-label="Select invoice"></td>
|
||||
<td><span class="text-secondary">001407</span></td>
|
||||
<td><a href="invoice.html" class="text-reset" tabindex="-1">Logo & Print</a></td>
|
||||
<td>
|
||||
<span class="flag flag-xs flag-country-us me-2"></span>
|
||||
Apple
|
||||
</td>
|
||||
<td>
|
||||
87956621
|
||||
</td>
|
||||
<td>
|
||||
22 Mar 2018
|
||||
</td>
|
||||
<td>
|
||||
<span class="badge bg-success me-1"></span> Paid Today
|
||||
</td>
|
||||
<td>$2500</td>
|
||||
<td class="text-end">
|
||||
<span class="dropdown">
|
||||
<button class="btn dropdown-toggle align-text-top" data-bs-boundary="viewport" data-bs-toggle="dropdown">Actions</button>
|
||||
<div class="dropdown-menu dropdown-menu-end">
|
||||
<a class="dropdown-item" href="#">
|
||||
Action
|
||||
</a>
|
||||
<a class="dropdown-item" href="#">
|
||||
Another action
|
||||
</a>
|
||||
</div>
|
||||
</span>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><input class="form-check-input m-0 align-middle" type="checkbox" aria-label="Select invoice"></td>
|
||||
<td><span class="text-secondary">001408</span></td>
|
||||
<td><a href="invoice.html" class="text-reset" tabindex="-1">Icons</a></td>
|
||||
<td>
|
||||
<span class="flag flag-xs flag-country-pl me-2"></span>
|
||||
Tookapic
|
||||
</td>
|
||||
<td>
|
||||
87956621
|
||||
</td>
|
||||
<td>
|
||||
13 May 2018
|
||||
</td>
|
||||
<td>
|
||||
<span class="badge bg-success me-1"></span> Paid Today
|
||||
</td>
|
||||
<td>$940</td>
|
||||
<td class="text-end">
|
||||
<span class="dropdown">
|
||||
<button class="btn dropdown-toggle align-text-top" data-bs-boundary="viewport" data-bs-toggle="dropdown">Actions</button>
|
||||
<div class="dropdown-menu dropdown-menu-end">
|
||||
<a class="dropdown-item" href="#">
|
||||
Action
|
||||
</a>
|
||||
<a class="dropdown-item" href="#">
|
||||
Another action
|
||||
</a>
|
||||
</div>
|
||||
</span>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
<div class="card-footer d-flex align-items-center">
|
||||
<p class="m-0 text-secondary">Showing <span>1</span> to <span>8</span> of <span>16</span> entries</p>
|
||||
<ul class="pagination m-0 ms-auto">
|
||||
<li class="page-item disabled">
|
||||
<a class="page-link" href="#" tabindex="-1" aria-disabled="true">
|
||||
<!-- Download SVG icon from http://tabler-icons.io/i/chevron-left -->
|
||||
<svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"></path><path d="M15 6l-6 6l6 6"></path></svg>
|
||||
prev
|
||||
</a>
|
||||
</li>
|
||||
<li class="page-item"><a class="page-link" href="#">1</a></li>
|
||||
<li class="page-item active"><a class="page-link" href="#">2</a></li>
|
||||
<li class="page-item"><a class="page-link" href="#">3</a></li>
|
||||
<li class="page-item"><a class="page-link" href="#">4</a></li>
|
||||
<li class="page-item"><a class="page-link" href="#">5</a></li>
|
||||
<li class="page-item">
|
||||
<a class="page-link" href="#">
|
||||
next <!-- Download SVG icon from http://tabler-icons.io/i/chevron-right -->
|
||||
<svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"></path><path d="M9 6l6 6l-6 6"></path></svg>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Tabler Core -->
|
||||
<script src="./dist/js/tabler.min.js?1668287865" defer=""></script>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
@ -1,5 +1,28 @@
|
||||
<!-- CSS files -->
|
||||
<link href="./dist/tabler/css/tabler.min.css?1668287865" rel="stylesheet"/>
|
||||
<link href="./dist/tabler/css/tabler-flags.min.css?1668287865" rel="stylesheet"/>
|
||||
<link href="./dist/tabler/css/tabler-payments.min.css?1668287865" rel="stylesheet"/>
|
||||
<link href="./dist/tabler/css/tabler-vendors.min.css?1668287865" rel="stylesheet"/>
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover"/>
|
||||
<meta http-equiv="X-UA-Compatible" content="ie=edge"/>
|
||||
<title>{% BIND pagename %} - RadioMaster</title>
|
||||
|
||||
<!-- CSS files tabler -->
|
||||
<link href="./dist/css/tabler.min.css?1668287865" rel="stylesheet"/>
|
||||
<link href="./dist/css/tabler-flags.min.css?1668287865" rel="stylesheet"/>
|
||||
<link href="./dist/css/tabler-payments.min.css?1668287865" rel="stylesheet"/>
|
||||
<link href="./dist/css/tabler-vendors.min.css?1668287865" rel="stylesheet"/>
|
||||
|
||||
<style>
|
||||
@import url('https://rsms.me/inter/inter.css');
|
||||
:root {
|
||||
--tblr-font-sans-serif: Inter, -apple-system, BlinkMacSystemFont, San Francisco, Segoe UI, Roboto, Helvetica Neue, sans-serif;
|
||||
}
|
||||
</style>
|
||||
|
||||
<!-- JS leafletmaps -->
|
||||
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.9.4/dist/leaflet.css" integrity="sha256-p4NxAoJBhIIN+hmNHrzRCf9tD/miZyoHS5obTRR9BMY=" crossorigin="" />
|
||||
<script src="https://unpkg.com/leaflet@1.9.4/dist/leaflet.js" integrity="sha256-20nQCchB9co0qIjJZRGuk2/Z9VM+kNiyxNV1lvTlZBo=" crossorigin=""></script>
|
||||
|
||||
<!-- JS sattelite.js -->
|
||||
<script src="/dist/js/satellite.min.js"></script>
|
||||
|
||||
</head>
|
@ -8,21 +8,38 @@
|
||||
<div class="navbar-nav flex-row order-md-last">
|
||||
<div class="nav-item dropdown">
|
||||
<a href="#" class="nav-link d-flex lh-1 text-reset p-0 show" data-bs-toggle="dropdown" aria-label="Open user menu" aria-expanded="true">
|
||||
<span class="avatar avatar-sm" style="background-image: url({% BIND user.img %})"></span>
|
||||
<span class="avatar avatar-sm" style="background-image: url(/static/icons/user.svg)"></span>
|
||||
<div class="d-none d-xl-block ps-2">
|
||||
<div>{% BIND user.name %}</div>
|
||||
<div class="mt-1 small text-muted">{% BIND user.info %}</div>
|
||||
<div>{% BIND item.userName %}</div>
|
||||
<div class="mt-1 small text-muted">{% BIND item.realName %}</div>
|
||||
</div>
|
||||
</a>
|
||||
<div class="dropdown-menu dropdown-menu-end dropdown-menu-arrow show" data-bs-popper="static">
|
||||
<a href="#" class="dropdown-item">Status</a>
|
||||
<a href="#" class="dropdown-item">Profile</a>
|
||||
<a href="#" class="dropdown-item">Feedback</a>
|
||||
<div class="dropdown-divider"></div>
|
||||
<a href="./settings.html" class="dropdown-item">Settings</a>
|
||||
<a href="./sign-in.html" class="dropdown-item">Logout</a>
|
||||
<div class="dropdown-menu dropdown-menu-end dropdown-menu-arrow" data-bs-popper="static">
|
||||
<a href="/logout" class="dropdown-item">Logout</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
</header>
|
||||
<div class="navbar-expand-md">
|
||||
<div class="collapse navbar-collapse" id="navbar-menu">
|
||||
<div class="navbar navbar-light">
|
||||
<div class="container-xl">
|
||||
<ul class="navbar-nav">
|
||||
{% FOREACH menu_items RENDER blocks/nav-item.html %}
|
||||
</ul>
|
||||
<div class="my-2 my-md-0 flex-grow-1 flex-md-grow-0 order-first order-md-last">
|
||||
<form action="./" method="get" autocomplete="off" novalidate>
|
||||
<div class="input-icon">
|
||||
<span class="input-icon-addon">
|
||||
<!-- Download SVG icon from http://tabler-icons.io/i/search -->
|
||||
<svg xmlns="http://www.w3.org/2000/svg" class="icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><circle cx="10" cy="10" r="7" /><line x1="21" y1="21" x2="15" y2="15" /></svg>
|
||||
</span>
|
||||
<input type="text" value="" class="form-control" placeholder="Search…" aria-label="Search in website">
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
44
web/VIEWS/login.html
Normal file
@ -0,0 +1,44 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
{% INCLUDE layout/head.html %}
|
||||
<body class=" border-top-wide border-primary d-flex flex-column">
|
||||
<div class="page page-center">
|
||||
<div class="container container-tight py-4">
|
||||
<div class="text-center mb-4">
|
||||
<a href="." class="navbar-brand navbar-brand-autodark">
|
||||
<img src="./static/logo.svg" width="110" height="32" alt="Tabler" class="navbar-brand-image">
|
||||
</a>
|
||||
</div>
|
||||
<div class="card card-md">
|
||||
<div class="card-body">
|
||||
<h2 class="h2 text-center mb-4">Login to your account</h2>
|
||||
|
||||
{% IF fail==true USE BINDINCLUDE blocks/alert-danger.html failInfo %}
|
||||
|
||||
<form method="post" autocomplete="off" novalidate="">
|
||||
<div class="mb-3">
|
||||
<label class="form-label">Username</label>
|
||||
<input type="text" class="form-control {% IF fail==true USE is-invalid %}" placeholder="albert" name="username" autocomplete="off">
|
||||
</div>
|
||||
<div class="mb-2">
|
||||
<label class="form-label">Password</label>
|
||||
<div class="input-group input-group-flat">
|
||||
<input type="password" class="form-control {% IF fail==true USE is-invalid %}" name="password" placeholder="Your password" autocomplete="off">
|
||||
</div>
|
||||
</div>
|
||||
<div class="mb-2"></div>
|
||||
<div class="form-footer">
|
||||
<button type="submit" class="btn btn-primary w-100">Sign in</button>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="text-center text-muted mt-3">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<!-- Tabler Core -->
|
||||
<script src="./dist/js/tabler.min.js?1668287865" defer=""></script>
|
||||
</body>
|
||||
</html>
|
63
web/VIEWS/observations.html
Normal file
@ -0,0 +1,63 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
{% INCLUDE layout/head.html %}
|
||||
<body>
|
||||
<div class="page">
|
||||
{% BINDINCLUDE layout/header.html logined %}
|
||||
|
||||
<div class="page-header d-print-none mt-4">
|
||||
<div class="container-xl">
|
||||
<div class="row g-2 align-items-center">
|
||||
<div class="col">
|
||||
<!-- Page pre-title -->
|
||||
<div class="page-pretitle">
|
||||
stations
|
||||
</div>
|
||||
<h2 class="page-title">
|
||||
Observations
|
||||
</h2>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="page-body">
|
||||
<div class="container-xl">
|
||||
<div class="row row-deck row-cards">
|
||||
|
||||
|
||||
<div class="col-12">
|
||||
<div class="card">
|
||||
<div class="card-header">
|
||||
<h3 class="card-title">Planed, Successed and Faild</h3>
|
||||
</div>
|
||||
<div class="table-responsive">
|
||||
<table class="table card-table table-vcenter text-nowrap datatable table-hover">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Station</th>
|
||||
<th>Target</th>
|
||||
<th>Modulation</th>
|
||||
<th>Type</th>
|
||||
<th>Frequency</th>
|
||||
<th>Status</th>
|
||||
<th>Start</th>
|
||||
<th>End</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{% FOREACH observations RENDER blocks/observation-item.html %}
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Tabler Core -->
|
||||
<script src="./dist/js/tabler.min.js?1668287865" defer=""></script>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
8
web/dist/js/satellite.min.js
vendored
Normal file
@ -1,6 +1,9 @@
|
||||
<?php
|
||||
include __DIR__ . "/wsos/autoload.php";
|
||||
include "DAL/user.php";
|
||||
include __DIR__ . "/wsos/wsos/autoload.php";
|
||||
|
||||
foreach (glob("DAL/*.php") as $filename) {
|
||||
include_once $filename;
|
||||
}
|
||||
|
||||
$container = new \wsos\structs\container();
|
||||
$db = new \wsos\database\drivers\inAppArray();
|
||||
@ -13,12 +16,12 @@
|
||||
$context = [
|
||||
"url" => $url,
|
||||
"menu_items" => [
|
||||
["url" => "/", "name" => "Dashboard"],
|
||||
["url" => "/observations", "name" => "Observations"],
|
||||
["url" => "/stations", "name" => "Stations"],
|
||||
["url" => "/targets", "name" => "Targets"],
|
||||
["url" => "/modulations", "name" => "Modulations"],
|
||||
["url" => "/datatypes", "name" => "Data Types"],
|
||||
["url" => "/", "name" => "Dashboard", "icon" => "/static/icons/dashboard.svg"],
|
||||
["url" => "/observations", "name" => "Observations", "icon" => "/static/icons/telescope.svg"],
|
||||
["url" => "/stations", "name" => "Stations", "icon" => "/static/icons/radio.svg"],
|
||||
["url" => "/targets", "name" => "Targets", "icon" => "/static/icons/focus-2.svg"],
|
||||
["url" => "/modulations", "name" => "Modulations", "icon" => "/static/icons/wave-sine.svg"],
|
||||
["url" => "/datatypes", "name" => "Data Types", "icon" => "/static/icons/file-analytics.svg"],
|
||||
],
|
||||
|
||||
"logined" => $auth->getActive()
|
||||
@ -34,8 +37,9 @@
|
||||
// do not do this in release!!
|
||||
include "seeds.php";
|
||||
|
||||
if ($url == "/") include "CONTROLLERS/dashboard.php";
|
||||
else if ($url == "/observations") include "CONTROLLERS/observations.php";
|
||||
else if ($url == "/stations") include "CONTROLLERS/stations.php";
|
||||
else include "CONTROLLERS/404.php";
|
||||
if ($url == "/") include __DIR__ . "/CONTROLLERS/dashboard.php";
|
||||
else if ($url == "/observations") include __DIR__ . "/CONTROLLERS/observations.php";
|
||||
else if ($url == "/stations") include __DIR__ . "/CONTROLLERS/stations.php";
|
||||
else if ($url == "/login") include __DIR__ . "/CONTROLLERS/login.php";
|
||||
else include __DIR__ . "/CONTROLLERS/404.php";
|
||||
?>
|
@ -0,0 +1,96 @@
|
||||
<?php
|
||||
/**
|
||||
* Create default user
|
||||
*/
|
||||
$admin = new \DAL\user();
|
||||
$admin->userName->set("admin");
|
||||
$admin->pass->set("admin");
|
||||
$admin->admin->set(true);
|
||||
$admin->commit(); /* commit changes to DB */
|
||||
|
||||
$satType = new \DAL\targetType();
|
||||
$satType->name->set("sat");
|
||||
$satType->commit();
|
||||
|
||||
$wetImgType = new \DAL\dataType();
|
||||
$wetImgType->name->set("weather photo");
|
||||
$wetImgType->commit();
|
||||
|
||||
|
||||
/**
|
||||
* Test station
|
||||
*/
|
||||
$myStation = new \DAL\station();
|
||||
$myStation->name->set("Medlánky");
|
||||
$myStation->commit();
|
||||
|
||||
$myStation137 = new \DAL\receiver();
|
||||
$myStation137->station->set($myStation);
|
||||
$myStation137->commit();
|
||||
|
||||
/**
|
||||
* NOAA modulations
|
||||
*/
|
||||
|
||||
$fm = new \DAL\modulation();
|
||||
$fm->name->set("FM");
|
||||
$fm->commit();
|
||||
|
||||
|
||||
/**
|
||||
* NOAA 19
|
||||
*/
|
||||
$noaa19 = new \DAL\target();
|
||||
$noaa19->name->set("NOAA 19");
|
||||
$noaa19->type->set($satType);
|
||||
$noaa19->description->set("NOAA 19 is the fifth in a series of five Polar-orbiting Operational Environmental Satellites (POES) with advanced microwave sounding instruments that provide imaging and sounding capabilities.");
|
||||
$noaa19->locator->set([
|
||||
"tle" => "NOAA 19\n1 33591U 09005A 23243.18101660 .00000207 00000-0 13587-3 0 9998\n2 33591 99.0938 290.2850 0014342 35.8617 324.3514 14.12812127750532"
|
||||
]);
|
||||
$noaa19->commit();
|
||||
|
||||
$noaa19APT = new \DAL\transmitter();
|
||||
$noaa19APT->target->set($noaa19);
|
||||
$noaa19APT->dataType->set($wetImgType);
|
||||
$noaa19APT->bandwidth->set(100);
|
||||
$noaa19APT->centerFrequency->set(137100000);
|
||||
$noaa19APT->modulation->set($fm);
|
||||
$noaa19APT->commit();
|
||||
|
||||
/**
|
||||
* NOAA 18
|
||||
*/
|
||||
$noaa18 = new \DAL\target();
|
||||
$noaa18->name->set("NOAA 18");
|
||||
$noaa18->type->set($satType);
|
||||
$noaa18->description->set("NOAA 18, known before launch as NOAA-N, is a weather forecasting satellite run by NOAA. NOAA-N (18) was launched into a sun-synchronous orbit at an altitude of 854 km above the Earth, with an orbital period of 102 minutes. It hosts the AMSU-A, MHS, AVHRR, Space Environment Monitor SEM/2 instrument and High Resolution Infrared Radiation Sounder (HIRS) instruments, as well as the SBUV/2 ozone-monitoring instrument.");
|
||||
$noaa18->locator->set([
|
||||
"tle" => "NOAA 18\n1 28654U 05018A 23250.34978256 .00000271 00000-0 16921-3 0 9997\n2 28654 98.9045 324.3258 0015006 144.5825 215.6347 14.13000434943172"
|
||||
]);
|
||||
$noaa18->commit();
|
||||
|
||||
$noaa18APT = new \DAL\transmitter();
|
||||
$noaa18APT->target->set($noaa18);
|
||||
$noaa18APT->dataType->set($wetImgType);
|
||||
$noaa18APT->bandwidth->set(100);
|
||||
$noaa18APT->centerFrequency->set(137912500);
|
||||
$noaa18APT->modulation->set($fm);
|
||||
$noaa18APT->commit();
|
||||
|
||||
|
||||
/**
|
||||
* Plan observation
|
||||
*/
|
||||
$noaa19Plan = new \DAL\observation();
|
||||
$noaa19Plan->status->set("planed");
|
||||
$noaa19Plan->locator->set($noaa19->locator->get());
|
||||
$noaa19Plan->transmitter->set($noaa19APT);
|
||||
$noaa19Plan->receiver->set($myStation137);
|
||||
$noaa19Plan->commit();
|
||||
|
||||
$noaa18Plan = new \DAL\observation();
|
||||
$noaa18Plan->status->set("planed");
|
||||
$noaa18Plan->locator->set($noaa18->locator->get());
|
||||
$noaa18Plan->transmitter->set($noaa18APT);
|
||||
$noaa18Plan->receiver->set($myStation137);
|
||||
$noaa18Plan->commit();
|
11
web/static/icons/antenna.svg
Normal file
@ -0,0 +1,11 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-antenna" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
|
||||
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
|
||||
<path d="M20 4v8" />
|
||||
<path d="M16 4.5v7" />
|
||||
<path d="M12 5v16" />
|
||||
<path d="M8 5.5v5" />
|
||||
<path d="M4 6v4" />
|
||||
<path d="M20 8h-16" />
|
||||
</svg>
|
||||
|
||||
|
After Width: | Height: | Size: 433 B |
8
web/static/icons/dashboard.svg
Normal file
@ -0,0 +1,8 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-dashboard" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
|
||||
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
|
||||
<path d="M12 13m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0" />
|
||||
<path d="M13.45 11.55l2.05 -2.05" />
|
||||
<path d="M6.4 20a9 9 0 1 1 11.2 0z" />
|
||||
</svg>
|
||||
|
||||
|
After Width: | Height: | Size: 428 B |
10
web/static/icons/file-analytics.svg
Normal file
@ -0,0 +1,10 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-file-analytics" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
|
||||
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
|
||||
<path d="M14 3v4a1 1 0 0 0 1 1h4" />
|
||||
<path d="M17 21h-10a2 2 0 0 1 -2 -2v-14a2 2 0 0 1 2 -2h7l5 5v11a2 2 0 0 1 -2 2z" />
|
||||
<path d="M9 17l0 -5" />
|
||||
<path d="M12 17l0 -1" />
|
||||
<path d="M15 17l0 -3" />
|
||||
</svg>
|
||||
|
||||
|
After Width: | Height: | Size: 502 B |
11
web/static/icons/focus-2.svg
Normal file
@ -0,0 +1,11 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-focus-2" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
|
||||
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
|
||||
<circle cx="12" cy="12" r=".5" fill="currentColor" />
|
||||
<path d="M12 12m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0" />
|
||||
<path d="M12 3l0 2" />
|
||||
<path d="M3 12l2 0" />
|
||||
<path d="M12 19l0 2" />
|
||||
<path d="M19 12l2 0" />
|
||||
</svg>
|
||||
|
||||
|
After Width: | Height: | Size: 506 B |
10
web/static/icons/radio.svg
Normal file
@ -0,0 +1,10 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-radio" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
|
||||
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
|
||||
<path d="M14 3l-9.371 3.749a1 1 0 0 0 -.629 .928v11.323a1 1 0 0 0 1 1h14a1 1 0 0 0 1 -1v-11a1 1 0 0 0 -1 -1h-14.5" />
|
||||
<path d="M4 12h16" />
|
||||
<path d="M7 12v-2" />
|
||||
<path d="M17 16v.01" />
|
||||
<path d="M13 16v.01" />
|
||||
</svg>
|
||||
|
||||
|
After Width: | Height: | Size: 508 B |
11
web/static/icons/satellite.svg
Normal file
@ -0,0 +1,11 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-satellite" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
|
||||
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
|
||||
<path d="M3.707 6.293l2.586 -2.586a1 1 0 0 1 1.414 0l5.586 5.586a1 1 0 0 1 0 1.414l-2.586 2.586a1 1 0 0 1 -1.414 0l-5.586 -5.586a1 1 0 0 1 0 -1.414z" />
|
||||
<path d="M6 10l-3 3l3 3l3 -3" />
|
||||
<path d="M10 6l3 -3l3 3l-3 3" />
|
||||
<path d="M12 12l1.5 1.5" />
|
||||
<path d="M14.5 17a2.5 2.5 0 0 0 2.5 -2.5" />
|
||||
<path d="M15 21a6 6 0 0 0 6 -6" />
|
||||
</svg>
|
||||
|
||||
|
After Width: | Height: | Size: 631 B |
9
web/static/icons/telescope.svg
Normal file
@ -0,0 +1,9 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-telescope" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
|
||||
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
|
||||
<path d="M6 21l6 -5l6 5" />
|
||||
<path d="M12 13v8" />
|
||||
<path d="M3.294 13.678l.166 .281c.52 .88 1.624 1.265 2.605 .91l14.242 -5.165a1.023 1.023 0 0 0 .565 -1.456l-2.62 -4.705a1.087 1.087 0 0 0 -1.447 -.42l-.056 .032l-12.694 7.618c-1.02 .613 -1.357 1.897 -.76 2.905z" />
|
||||
<path d="M14 5l3 5.5" />
|
||||
</svg>
|
||||
|
||||
|
After Width: | Height: | Size: 590 B |
7
web/static/icons/user.svg
Normal file
@ -0,0 +1,7 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-user" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
|
||||
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
|
||||
<path d="M8 7a4 4 0 1 0 8 0a4 4 0 0 0 -8 0" />
|
||||
<path d="M6 21v-2a4 4 0 0 1 4 -4h4a4 4 0 0 1 4 4v2" />
|
||||
</svg>
|
||||
|
||||
|
After Width: | Height: | Size: 393 B |
6
web/static/icons/wave-sine.svg
Normal file
@ -0,0 +1,6 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-wave-sine" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round">
|
||||
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
|
||||
<path d="M21 12h-2c-.894 0 -1.662 -.857 -1.761 -2c-.296 -3.45 -.749 -6 -2.749 -6s-2.5 3.582 -2.5 8s-.5 8 -2.5 8s-2.452 -2.547 -2.749 -6c-.1 -1.147 -.867 -2 -1.763 -2h-2" />
|
||||
</svg>
|
||||
|
||||
|
After Width: | Height: | Size: 467 B |
1
web/wsos
Submodule
@ -0,0 +1 @@
|
||||
Subproject commit ff5a891a3dee6a9363984dde57163b142fd22c52
|