forked from AoS_Digital_Health_Platform/aos-glass-report-np
changed directory
This commit is contained in:
41
glass_report/app/Console/Kernel.php
Normal file
41
glass_report/app/Console/Kernel.php
Normal file
@@ -0,0 +1,41 @@
|
||||
<?php
|
||||
|
||||
namespace App\Console;
|
||||
|
||||
use Illuminate\Console\Scheduling\Schedule;
|
||||
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
|
||||
|
||||
class Kernel extends ConsoleKernel
|
||||
{
|
||||
/**
|
||||
* The Artisan commands provided by your application.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $commands = [
|
||||
//
|
||||
];
|
||||
|
||||
/**
|
||||
* Define the application's command schedule.
|
||||
*
|
||||
* @param \Illuminate\Console\Scheduling\Schedule $schedule
|
||||
* @return void
|
||||
*/
|
||||
protected function schedule(Schedule $schedule)
|
||||
{
|
||||
// $schedule->command('inspire')->hourly();
|
||||
}
|
||||
|
||||
/**
|
||||
* Register the commands for the application.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
protected function commands()
|
||||
{
|
||||
$this->load(__DIR__.'/Commands');
|
||||
|
||||
require base_path('routes/console.php');
|
||||
}
|
||||
}
|
||||
55
glass_report/app/Exceptions/Handler.php
Normal file
55
glass_report/app/Exceptions/Handler.php
Normal file
@@ -0,0 +1,55 @@
|
||||
<?php
|
||||
|
||||
namespace App\Exceptions;
|
||||
|
||||
use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
|
||||
use Throwable;
|
||||
|
||||
class Handler extends ExceptionHandler
|
||||
{
|
||||
/**
|
||||
* A list of the exception types that are not reported.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $dontReport = [
|
||||
//
|
||||
];
|
||||
|
||||
/**
|
||||
* A list of the inputs that are never flashed for validation exceptions.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $dontFlash = [
|
||||
'password',
|
||||
'password_confirmation',
|
||||
];
|
||||
|
||||
/**
|
||||
* Report or log an exception.
|
||||
*
|
||||
* @param \Throwable $exception
|
||||
* @return void
|
||||
*
|
||||
* @throws \Exception
|
||||
*/
|
||||
public function report(Throwable $exception)
|
||||
{
|
||||
parent::report($exception);
|
||||
}
|
||||
|
||||
/**
|
||||
* Render an exception into an HTTP response.
|
||||
*
|
||||
* @param \Illuminate\Http\Request $request
|
||||
* @param \Throwable $exception
|
||||
* @return \Symfony\Component\HttpFoundation\Response
|
||||
*
|
||||
* @throws \Throwable
|
||||
*/
|
||||
public function render($request, Throwable $exception)
|
||||
{
|
||||
return parent::render($request, $exception);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,40 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers\Auth;
|
||||
|
||||
use App\Http\Controllers\Controller;
|
||||
use App\Providers\RouteServiceProvider;
|
||||
use Illuminate\Foundation\Auth\ConfirmsPasswords;
|
||||
|
||||
class ConfirmPasswordController extends Controller
|
||||
{
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Confirm Password Controller
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This controller is responsible for handling password confirmations and
|
||||
| uses a simple trait to include the behavior. You're free to explore
|
||||
| this trait and override any functions that require customization.
|
||||
|
|
||||
*/
|
||||
|
||||
use ConfirmsPasswords;
|
||||
|
||||
/**
|
||||
* Where to redirect users when the intended url fails.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $redirectTo = RouteServiceProvider::HOME;
|
||||
|
||||
/**
|
||||
* Create a new controller instance.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
$this->middleware('auth');
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers\Auth;
|
||||
|
||||
use App\Http\Controllers\Controller;
|
||||
use Illuminate\Foundation\Auth\SendsPasswordResetEmails;
|
||||
|
||||
class ForgotPasswordController extends Controller
|
||||
{
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Password Reset Controller
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This controller is responsible for handling password reset emails and
|
||||
| includes a trait which assists in sending these notifications from
|
||||
| your application to your users. Feel free to explore this trait.
|
||||
|
|
||||
*/
|
||||
|
||||
use SendsPasswordResetEmails;
|
||||
}
|
||||
37
glass_report/app/Http/Controllers/Auth/LoginController.php
Normal file
37
glass_report/app/Http/Controllers/Auth/LoginController.php
Normal file
@@ -0,0 +1,37 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers\Auth;
|
||||
|
||||
use App\Http\Controllers\Controller;
|
||||
use App\Providers\RouteServiceProvider;
|
||||
use Illuminate\Foundation\Auth\AuthenticatesUsers;
|
||||
use Illuminate\Http\Request;
|
||||
|
||||
class LoginController extends Controller
|
||||
{
|
||||
use AuthenticatesUsers;
|
||||
|
||||
/**
|
||||
* Where to redirect users after login.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
// protected $redirectTo = RouteServiceProvider::HOME;
|
||||
protected $redirectTo = '';
|
||||
|
||||
/**
|
||||
* Create a new controller instance.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
$this->middleware('guest')->except('logout');
|
||||
}
|
||||
|
||||
public function username()
|
||||
{
|
||||
return 'username';
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,73 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers\Auth;
|
||||
|
||||
use App\Http\Controllers\Controller;
|
||||
use App\Providers\RouteServiceProvider;
|
||||
use App\User;
|
||||
use Illuminate\Foundation\Auth\RegistersUsers;
|
||||
use Illuminate\Support\Facades\Hash;
|
||||
use Illuminate\Support\Facades\Validator;
|
||||
|
||||
class RegisterController extends Controller
|
||||
{
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Register Controller
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This controller handles the registration of new users as well as their
|
||||
| validation and creation. By default this controller uses a trait to
|
||||
| provide this functionality without requiring any additional code.
|
||||
|
|
||||
*/
|
||||
|
||||
use RegistersUsers;
|
||||
|
||||
/**
|
||||
* Where to redirect users after registration.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $redirectTo = RouteServiceProvider::HOME;
|
||||
|
||||
/**
|
||||
* Create a new controller instance.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
$this->middleware('guest');
|
||||
}
|
||||
|
||||
/**
|
||||
* Get a validator for an incoming registration request.
|
||||
*
|
||||
* @param array $data
|
||||
* @return \Illuminate\Contracts\Validation\Validator
|
||||
*/
|
||||
protected function validator(array $data)
|
||||
{
|
||||
return Validator::make($data, [
|
||||
'name' => ['required', 'string', 'max:255'],
|
||||
'email' => ['required', 'string', 'email', 'max:255', 'unique:users'],
|
||||
'password' => ['required', 'string', 'min:8', 'confirmed'],
|
||||
]);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a new user instance after a valid registration.
|
||||
*
|
||||
* @param array $data
|
||||
* @return \App\User
|
||||
*/
|
||||
protected function create(array $data)
|
||||
{
|
||||
return User::create([
|
||||
'name' => $data['name'],
|
||||
'email' => $data['email'],
|
||||
'password' => Hash::make($data['password']),
|
||||
]);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,32 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers\Auth;
|
||||
|
||||
use App\Http\Controllers\Controller;
|
||||
use App\Providers\RouteServiceProvider;
|
||||
use Illuminate\Foundation\Auth\ResetsPasswords;
|
||||
|
||||
class ResetPasswordController extends Controller
|
||||
{
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Password Reset Controller
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This controller is responsible for handling password reset requests
|
||||
| and uses a simple trait to include this behavior. You're free to
|
||||
| explore this trait and override any methods you wish to tweak.
|
||||
|
|
||||
*/
|
||||
|
||||
use ResetsPasswords;
|
||||
|
||||
|
||||
/**
|
||||
* Where to redirect users after resetting their password.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
// protected $redirectTo = RouteServiceProvider::HOME;
|
||||
protected $redirectTo = '/';
|
||||
}
|
||||
@@ -0,0 +1,43 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers\Auth;
|
||||
|
||||
use App\Http\Controllers\Controller;
|
||||
use App\Providers\RouteServiceProvider;
|
||||
use Illuminate\Foundation\Auth\VerifiesEmails;
|
||||
|
||||
class VerificationController extends Controller
|
||||
{
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Email Verification Controller
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This controller is responsible for handling email verification for any
|
||||
| user that recently registered with the application. Emails may also
|
||||
| be re-sent if the user didn't receive the original email message.
|
||||
|
|
||||
*/
|
||||
|
||||
use VerifiesEmails;
|
||||
|
||||
/**
|
||||
* Where to redirect users after verification.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
// protected $redirectTo = RouteServiceProvider::HOME;
|
||||
protected $redirectTo = '/';
|
||||
|
||||
/**
|
||||
* Create a new controller instance.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
$this->middleware('auth');
|
||||
$this->middleware('signed')->only('verify');
|
||||
$this->middleware('throttle:6,1')->only('verify', 'resend');
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,50 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
use Illuminate\Http\Request;
|
||||
use Illuminate\Support\Carbon;
|
||||
use Illuminate\Support\Facades\Auth;
|
||||
use Illuminate\Support\Facades\Hash;
|
||||
|
||||
class ChangePasswordController extends Controller
|
||||
{
|
||||
public function __construct()
|
||||
{
|
||||
$this->middleware(['auth', 'verified']);
|
||||
// ->except(['create', 'store'])
|
||||
}
|
||||
//
|
||||
public function index(){
|
||||
|
||||
return view('auth.change_pass');
|
||||
}
|
||||
|
||||
public function upt_pass(Request $request){
|
||||
|
||||
$validatedData = $request->validate([
|
||||
'current_password' => 'required',
|
||||
'password' => 'required|string|min:6|confirmed',
|
||||
]);
|
||||
|
||||
if (!(Hash::check($request->get('current_password'), Auth::user()->password))) {
|
||||
// The passwords matches
|
||||
return redirect()->back()->with("error","Your current password does not matches with the password you provided. Please try again.");
|
||||
}
|
||||
|
||||
if(strcmp($request->get('current_password'), $request->get('password')) == 0){
|
||||
//Current password and new password are same
|
||||
return redirect()->back()->with("error","New Password cannot be same as your current password. Please choose a different password.");
|
||||
}
|
||||
|
||||
//Change Password
|
||||
$user = Auth::user();
|
||||
$user->password = Hash::make($request->input('password'));
|
||||
$user->change_pass = Carbon::now();
|
||||
$user->save();
|
||||
|
||||
// return "good";
|
||||
|
||||
return redirect()->route('sample_file')->with("success","Password successfully changed !");
|
||||
}
|
||||
}
|
||||
13
glass_report/app/Http/Controllers/Controller.php
Normal file
13
glass_report/app/Http/Controllers/Controller.php
Normal file
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
use Illuminate\Foundation\Auth\Access\AuthorizesRequests;
|
||||
use Illuminate\Foundation\Bus\DispatchesJobs;
|
||||
use Illuminate\Foundation\Validation\ValidatesRequests;
|
||||
use Illuminate\Routing\Controller as BaseController;
|
||||
|
||||
class Controller extends BaseController
|
||||
{
|
||||
use AuthorizesRequests, DispatchesJobs, ValidatesRequests;
|
||||
}
|
||||
28
glass_report/app/Http/Controllers/HomeController.php
Normal file
28
glass_report/app/Http/Controllers/HomeController.php
Normal file
@@ -0,0 +1,28 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
use Illuminate\Http\Request;
|
||||
|
||||
class HomeController extends Controller
|
||||
{
|
||||
/**
|
||||
* Create a new controller instance.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
$this->middleware('auth');
|
||||
}
|
||||
|
||||
/**
|
||||
* Show the application dashboard.
|
||||
*
|
||||
* @return \Illuminate\Contracts\Support\Renderable
|
||||
*/
|
||||
public function index()
|
||||
{
|
||||
return view('home');
|
||||
}
|
||||
}
|
||||
97
glass_report/app/Http/Controllers/IrsxController.php
Normal file
97
glass_report/app/Http/Controllers/IrsxController.php
Normal file
@@ -0,0 +1,97 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
use App\irsx;
|
||||
use Illuminate\Http\Request;
|
||||
use Illuminate\Support\Carbon;
|
||||
use Illuminate\Support\Facades\DB;
|
||||
|
||||
class IrsxController extends Controller
|
||||
{
|
||||
|
||||
public function __construct()
|
||||
{
|
||||
$this->middleware(['auth', 'pass']);
|
||||
// ->except(['create', 'store'])
|
||||
}
|
||||
|
||||
public function index(){
|
||||
|
||||
// $date1 = Carbon::now()->subYear()->format('Y');
|
||||
$date1 = Carbon::now()->format('Y');
|
||||
// print($date1);
|
||||
$date = (!empty($_GET["date"])) ? ($_GET["date"]) : ($date1);
|
||||
$sex = (!empty($_GET["gender"])) ? ($_GET["gender"]) : 'all';
|
||||
|
||||
$data = irsx::distinct()->orderBy('year', 'desc')->get(['year']);
|
||||
if(!empty($_GET["gender"]) OR !empty($_GET["date"])){
|
||||
|
||||
if(($sex != 'all') AND ($date != 'all')){
|
||||
$result = DB::select("SELECT country, year, sex, pathogen, age, specimen, antibiotic,
|
||||
SUM(value) FILTER (WHERE status='R') AS Resistance,
|
||||
SUM(value) FILTER (WHERE status='I') AS Intermidiate,
|
||||
SUM(value) FILTER (WHERE status='S') AS Susceptable,
|
||||
SUM(value) FILTER (WHERE status='X') AS None,
|
||||
SUM(value) FILTER (WHERE status='NS') AS ns
|
||||
FROM ris
|
||||
where year = '$date' and sex = '$sex'
|
||||
GROUP BY country, year, sex, pathogen, age, specimen, antibiotic");
|
||||
}
|
||||
|
||||
elseif(($sex == 'all') AND ($date != 'all')){
|
||||
$result = DB::select("SELECT country, year, sex, pathogen, age, specimen, antibiotic,
|
||||
SUM(value) FILTER (WHERE status='R') AS Resistance,
|
||||
SUM(value) FILTER (WHERE status='I') AS Intermidiate,
|
||||
SUM(value) FILTER (WHERE status='S') AS Susceptable,
|
||||
SUM(value) FILTER (WHERE status='X') AS None,
|
||||
SUM(value) FILTER (WHERE status='NS') AS ns
|
||||
FROM ris
|
||||
where year = '$date'
|
||||
GROUP BY country, year, sex, pathogen, age, specimen, antibiotic");
|
||||
}
|
||||
|
||||
elseif(($sex != 'all') AND ($date == 'all')){
|
||||
$result = DB::select("SELECT country, year, sex, pathogen, age, specimen, antibiotic,
|
||||
SUM(value) FILTER (WHERE status='R') AS Resistance,
|
||||
SUM(value) FILTER (WHERE status='I') AS Intermidiate,
|
||||
SUM(value) FILTER (WHERE status='S') AS Susceptable,
|
||||
SUM(value) FILTER (WHERE status='X') AS None,
|
||||
SUM(value) FILTER (WHERE status='NS') AS ns
|
||||
FROM ris
|
||||
where sex = '$sex'
|
||||
GROUP BY country, year, sex, pathogen, age, specimen, antibiotic");
|
||||
}
|
||||
else{
|
||||
$result = DB::select("SELECT country, year, sex, pathogen, age, specimen, antibiotic,
|
||||
SUM(value) FILTER (WHERE status='R') AS Resistance,
|
||||
SUM(value) FILTER (WHERE status='I') AS Intermidiate,
|
||||
SUM(value) FILTER (WHERE status='S') AS Susceptable,
|
||||
SUM(value) FILTER (WHERE status='X') AS None,
|
||||
SUM(value) FILTER (WHERE status='NS') AS ns
|
||||
FROM ris
|
||||
GROUP BY country, year, sex, pathogen, age, specimen, antibiotic");
|
||||
}
|
||||
} else{
|
||||
$result = DB::select("SELECT country, year, sex, pathogen, age, specimen, antibiotic,
|
||||
SUM(value) FILTER (WHERE status='R') AS Resistance,
|
||||
SUM(value) FILTER (WHERE status='I') AS Intermidiate,
|
||||
SUM(value) FILTER (WHERE status='S') AS Susceptable,
|
||||
SUM(value) FILTER (WHERE status='X') AS None,
|
||||
SUM(value) FILTER (WHERE status='NS') AS ns
|
||||
FROM ris
|
||||
where year = '$date'
|
||||
GROUP BY country, year, sex, pathogen, age, specimen, antibiotic");
|
||||
}
|
||||
|
||||
|
||||
|
||||
// return $result;
|
||||
return view('pages.risx')
|
||||
->with('risx', $result)
|
||||
->with('data', $data)
|
||||
->with('date', $date)
|
||||
->with('sex', $sex);
|
||||
|
||||
}
|
||||
}
|
||||
83
glass_report/app/Http/Controllers/adminController.php
Normal file
83
glass_report/app/Http/Controllers/adminController.php
Normal file
@@ -0,0 +1,83 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
use App\User;
|
||||
use App\admin_record;
|
||||
use Illuminate\Support\Str;
|
||||
use Illuminate\Http\Request;
|
||||
use Illuminate\Support\Facades\Hash;
|
||||
use phpDocumentor\Reflection\DocBlock\Tags\Uses;
|
||||
|
||||
class adminController extends Controller
|
||||
{
|
||||
public function __construct()
|
||||
{
|
||||
$this->middleware(['auth', 'admin',]);
|
||||
// ->except(['create', 'store'])
|
||||
}
|
||||
|
||||
public function index(){
|
||||
$user = User::get()->sortByDesc('id');
|
||||
return view('auth.index')->with('user', $user);
|
||||
}
|
||||
|
||||
public function create(){
|
||||
return view('auth.register');
|
||||
}
|
||||
|
||||
public function save(Request $request){
|
||||
$request->validate([
|
||||
'full_name' => 'required|string|min:6',
|
||||
'email' => 'required|email|unique:users',
|
||||
'username' => 'required|min:4|unique:users',
|
||||
'Gender' => 'required',
|
||||
'role' => 'required',
|
||||
]);
|
||||
|
||||
$user = new User;
|
||||
$user->uid = str::random(20);
|
||||
$user->name = $request['full_name'];
|
||||
$user->email = $request['email'];
|
||||
$user->username = $request['username'];
|
||||
$user->sex = $request['Gender'];
|
||||
$user->role = $request['role'];
|
||||
$user->password = Hash::make($request['password']);
|
||||
$user->save();
|
||||
|
||||
return redirect()->route('register-home');
|
||||
}
|
||||
|
||||
public function edit($id){
|
||||
$data = User::where('uid', $id)->first();
|
||||
return view('auth.edit')->with('user', $data);
|
||||
}
|
||||
|
||||
public function update(Request $request, $id){
|
||||
$request->validate([
|
||||
'full_name' => 'required|string|min:6',
|
||||
// 'email' => 'required|email|unique:users',
|
||||
// 'username' => 'required|min:4|unique:users',
|
||||
'Gender' => 'required',
|
||||
'role' => 'required',
|
||||
]);
|
||||
|
||||
$user = User::find($id);
|
||||
|
||||
$user->name = $request['full_name'];
|
||||
$user->email = $request['email'];
|
||||
$user->username = $request['username'];
|
||||
$user->sex = $request['Gender'];
|
||||
$user->role = $request['role'];
|
||||
// $user->email = $request['email'];
|
||||
$user->save();
|
||||
|
||||
return redirect()->route('register-home');
|
||||
|
||||
}
|
||||
|
||||
public function delete($id){
|
||||
User::find($id)->delete();
|
||||
return redirect()->back()->with('success','Successfully Staff deleted');
|
||||
}
|
||||
}
|
||||
81
glass_report/app/Http/Controllers/sample_fileController.php
Normal file
81
glass_report/app/Http/Controllers/sample_fileController.php
Normal file
@@ -0,0 +1,81 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
use App\User;
|
||||
use App\sample_file;
|
||||
use Illuminate\Http\Request;
|
||||
use Illuminate\Support\Carbon;
|
||||
use Illuminate\Support\Facades\DB;
|
||||
use phpDocumentor\Reflection\Types\Null_;
|
||||
|
||||
class sample_fileController extends Controller
|
||||
{
|
||||
public function __construct()
|
||||
{
|
||||
$this->middleware(['auth', 'verified', 'pass']);
|
||||
// ->except(['create', 'store'])
|
||||
}
|
||||
|
||||
public function index(Request $request){
|
||||
// $date1 = null;
|
||||
// $date1 = Carbon::now()->subYear()->format('Y');
|
||||
$date1 = Carbon::now()->format('Y');
|
||||
$date = (!empty($_GET["date"])) ? ($_GET["date"]) : ($date1);
|
||||
$sex = (!empty($_GET["gender"])) ? ($_GET["gender"]) : 'all';
|
||||
|
||||
// return $sex.' '.$date;
|
||||
|
||||
$data = sample_file::distinct()->orderBy('year', 'desc')->get(['year']);
|
||||
|
||||
// $sex = 'm';
|
||||
|
||||
|
||||
if(!empty($_GET["gender"]) OR !empty($_GET["date"])){
|
||||
|
||||
if(($sex != 'all') AND ($date != 'all')){
|
||||
$result = DB::select("SELECT country, year, sex, age, specimen,
|
||||
SUM(value) AS value
|
||||
FROM sample_files
|
||||
WHERE sex = '$sex' AND year = '$date'
|
||||
GROUP BY country, year, sex, age, specimen ");
|
||||
}
|
||||
|
||||
elseif(($sex == 'all') AND ($date != 'all')){
|
||||
$result = DB::select("SELECT country, year, sex, age, specimen,
|
||||
SUM(value) AS value
|
||||
FROM sample_files
|
||||
WHERE year = '$date'
|
||||
GROUP BY country, year, sex, age, specimen ");
|
||||
}
|
||||
|
||||
elseif(($sex != 'all') AND ($date == 'all')){
|
||||
$result = DB::select("SELECT country, year, sex, age, specimen,
|
||||
SUM(value) AS value
|
||||
FROM sample_files
|
||||
WHERE sex = '$sex'
|
||||
GROUP BY country, year, sex, age, specimen ");
|
||||
}
|
||||
else{
|
||||
$result = DB::select("SELECT country, year, sex, age, specimen,
|
||||
SUM(value) AS value
|
||||
FROM sample_files
|
||||
GROUP BY country, year, sex, age, specimen ");
|
||||
}
|
||||
} else{
|
||||
$result = DB::select("SELECT country, year, sex, age, specimen,
|
||||
SUM(value) AS value
|
||||
FROM sample_files
|
||||
where year = '$date'
|
||||
-- where sex = '$sex'
|
||||
GROUP BY country, year, sex, age, specimen");
|
||||
}
|
||||
|
||||
return view('pages.sample_file')
|
||||
->with('sample_file', $result)
|
||||
->with('data', $data)
|
||||
->with('date', $date)
|
||||
->with('sex', $sex);
|
||||
|
||||
}
|
||||
}
|
||||
12
glass_report/app/Http/Controllers/textController.php
Normal file
12
glass_report/app/Http/Controllers/textController.php
Normal file
@@ -0,0 +1,12 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
use Illuminate\Http\Request;
|
||||
|
||||
class textController extends Controller
|
||||
{
|
||||
public function index(){
|
||||
return view('pages.text');
|
||||
}
|
||||
}
|
||||
69
glass_report/app/Http/Kernel.php
Normal file
69
glass_report/app/Http/Kernel.php
Normal file
@@ -0,0 +1,69 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http;
|
||||
|
||||
use Illuminate\Foundation\Http\Kernel as HttpKernel;
|
||||
|
||||
class Kernel extends HttpKernel
|
||||
{
|
||||
/**
|
||||
* The application's global HTTP middleware stack.
|
||||
*
|
||||
* These middleware are run during every request to your application.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $middleware = [
|
||||
// \App\Http\Middleware\TrustHosts::class,
|
||||
\App\Http\Middleware\TrustProxies::class,
|
||||
\Fruitcake\Cors\HandleCors::class,
|
||||
\App\Http\Middleware\CheckForMaintenanceMode::class,
|
||||
\Illuminate\Foundation\Http\Middleware\ValidatePostSize::class,
|
||||
\App\Http\Middleware\TrimStrings::class,
|
||||
\Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull::class,
|
||||
];
|
||||
|
||||
/**
|
||||
* The application's route middleware groups.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $middlewareGroups = [
|
||||
'web' => [
|
||||
\App\Http\Middleware\EncryptCookies::class,
|
||||
\Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse::class,
|
||||
\Illuminate\Session\Middleware\StartSession::class,
|
||||
// \Illuminate\Session\Middleware\AuthenticateSession::class,
|
||||
\Illuminate\View\Middleware\ShareErrorsFromSession::class,
|
||||
\App\Http\Middleware\VerifyCsrfToken::class,
|
||||
\Illuminate\Routing\Middleware\SubstituteBindings::class,
|
||||
],
|
||||
|
||||
'api' => [
|
||||
'throttle:60,1',
|
||||
\Illuminate\Routing\Middleware\SubstituteBindings::class,
|
||||
],
|
||||
];
|
||||
|
||||
/**
|
||||
* The application's route middleware.
|
||||
*
|
||||
* These middleware may be assigned to groups or used individually.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $routeMiddleware = [
|
||||
'auth' => \App\Http\Middleware\Authenticate::class,
|
||||
'auth.basic' => \Illuminate\Auth\Middleware\AuthenticateWithBasicAuth::class,
|
||||
'bindings' => \Illuminate\Routing\Middleware\SubstituteBindings::class,
|
||||
'cache.headers' => \Illuminate\Http\Middleware\SetCacheHeaders::class,
|
||||
'can' => \Illuminate\Auth\Middleware\Authorize::class,
|
||||
'guest' => \App\Http\Middleware\RedirectIfAuthenticated::class,
|
||||
'password.confirm' => \Illuminate\Auth\Middleware\RequirePassword::class,
|
||||
'signed' => \Illuminate\Routing\Middleware\ValidateSignature::class,
|
||||
'throttle' => \Illuminate\Routing\Middleware\ThrottleRequests::class,
|
||||
'verified' => \Illuminate\Auth\Middleware\EnsureEmailIsVerified::class,
|
||||
'admin' => \App\Http\Middleware\AdminMiddleware::class,
|
||||
'pass' => \App\Http\Middleware\change_pass::class,
|
||||
];
|
||||
}
|
||||
24
glass_report/app/Http/Middleware/AdminMiddleware.php
Normal file
24
glass_report/app/Http/Middleware/AdminMiddleware.php
Normal file
@@ -0,0 +1,24 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Middleware;
|
||||
|
||||
use Closure;
|
||||
use Illuminate\Support\Facades\Auth;
|
||||
|
||||
class AdminMiddleware
|
||||
{
|
||||
/**
|
||||
* Handle an incoming request.
|
||||
*
|
||||
* @param \Illuminate\Http\Request $request
|
||||
* @param \Closure $next
|
||||
* @return mixed
|
||||
*/
|
||||
public function handle($request, Closure $next)
|
||||
{
|
||||
if (Auth::user()->role != 'Admin') {
|
||||
return redirect()->back();
|
||||
}
|
||||
return $next($request);
|
||||
}
|
||||
}
|
||||
21
glass_report/app/Http/Middleware/Authenticate.php
Normal file
21
glass_report/app/Http/Middleware/Authenticate.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Middleware;
|
||||
|
||||
use Illuminate\Auth\Middleware\Authenticate as Middleware;
|
||||
|
||||
class Authenticate extends Middleware
|
||||
{
|
||||
/**
|
||||
* Get the path the user should be redirected to when they are not authenticated.
|
||||
*
|
||||
* @param \Illuminate\Http\Request $request
|
||||
* @return string|null
|
||||
*/
|
||||
protected function redirectTo($request)
|
||||
{
|
||||
if (! $request->expectsJson()) {
|
||||
return route('login');
|
||||
}
|
||||
}
|
||||
}
|
||||
17
glass_report/app/Http/Middleware/CheckForMaintenanceMode.php
Normal file
17
glass_report/app/Http/Middleware/CheckForMaintenanceMode.php
Normal file
@@ -0,0 +1,17 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Middleware;
|
||||
|
||||
use Illuminate\Foundation\Http\Middleware\CheckForMaintenanceMode as Middleware;
|
||||
|
||||
class CheckForMaintenanceMode extends Middleware
|
||||
{
|
||||
/**
|
||||
* The URIs that should be reachable while maintenance mode is enabled.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $except = [
|
||||
//
|
||||
];
|
||||
}
|
||||
17
glass_report/app/Http/Middleware/EncryptCookies.php
Normal file
17
glass_report/app/Http/Middleware/EncryptCookies.php
Normal file
@@ -0,0 +1,17 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Middleware;
|
||||
|
||||
use Illuminate\Cookie\Middleware\EncryptCookies as Middleware;
|
||||
|
||||
class EncryptCookies extends Middleware
|
||||
{
|
||||
/**
|
||||
* The names of the cookies that should not be encrypted.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $except = [
|
||||
//
|
||||
];
|
||||
}
|
||||
27
glass_report/app/Http/Middleware/RedirectIfAuthenticated.php
Normal file
27
glass_report/app/Http/Middleware/RedirectIfAuthenticated.php
Normal file
@@ -0,0 +1,27 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Middleware;
|
||||
|
||||
use App\Providers\RouteServiceProvider;
|
||||
use Closure;
|
||||
use Illuminate\Support\Facades\Auth;
|
||||
|
||||
class RedirectIfAuthenticated
|
||||
{
|
||||
/**
|
||||
* Handle an incoming request.
|
||||
*
|
||||
* @param \Illuminate\Http\Request $request
|
||||
* @param \Closure $next
|
||||
* @param string|null $guard
|
||||
* @return mixed
|
||||
*/
|
||||
public function handle($request, Closure $next, $guard = null)
|
||||
{
|
||||
if (Auth::guard($guard)->check()) {
|
||||
return redirect(RouteServiceProvider::HOME);
|
||||
}
|
||||
|
||||
return $next($request);
|
||||
}
|
||||
}
|
||||
18
glass_report/app/Http/Middleware/TrimStrings.php
Normal file
18
glass_report/app/Http/Middleware/TrimStrings.php
Normal file
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Middleware;
|
||||
|
||||
use Illuminate\Foundation\Http\Middleware\TrimStrings as Middleware;
|
||||
|
||||
class TrimStrings extends Middleware
|
||||
{
|
||||
/**
|
||||
* The names of the attributes that should not be trimmed.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $except = [
|
||||
'password',
|
||||
'password_confirmation',
|
||||
];
|
||||
}
|
||||
20
glass_report/app/Http/Middleware/TrustHosts.php
Normal file
20
glass_report/app/Http/Middleware/TrustHosts.php
Normal file
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Middleware;
|
||||
|
||||
use Illuminate\Http\Middleware\TrustHosts as Middleware;
|
||||
|
||||
class TrustHosts extends Middleware
|
||||
{
|
||||
/**
|
||||
* Get the host patterns that should be trusted.
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
public function hosts()
|
||||
{
|
||||
return [
|
||||
$this->allSubdomainsOfApplicationUrl(),
|
||||
];
|
||||
}
|
||||
}
|
||||
23
glass_report/app/Http/Middleware/TrustProxies.php
Normal file
23
glass_report/app/Http/Middleware/TrustProxies.php
Normal file
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Middleware;
|
||||
|
||||
use Fideloper\Proxy\TrustProxies as Middleware;
|
||||
use Illuminate\Http\Request;
|
||||
|
||||
class TrustProxies extends Middleware
|
||||
{
|
||||
/**
|
||||
* The trusted proxies for this application.
|
||||
*
|
||||
* @var array|string|null
|
||||
*/
|
||||
protected $proxies;
|
||||
|
||||
/**
|
||||
* The headers that should be used to detect proxies.
|
||||
*
|
||||
* @var int
|
||||
*/
|
||||
protected $headers = Request::HEADER_X_FORWARDED_ALL;
|
||||
}
|
||||
17
glass_report/app/Http/Middleware/VerifyCsrfToken.php
Normal file
17
glass_report/app/Http/Middleware/VerifyCsrfToken.php
Normal file
@@ -0,0 +1,17 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Middleware;
|
||||
|
||||
use Illuminate\Foundation\Http\Middleware\VerifyCsrfToken as Middleware;
|
||||
|
||||
class VerifyCsrfToken extends Middleware
|
||||
{
|
||||
/**
|
||||
* The URIs that should be excluded from CSRF verification.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $except = [
|
||||
//
|
||||
];
|
||||
}
|
||||
24
glass_report/app/Http/Middleware/change_pass.php
Normal file
24
glass_report/app/Http/Middleware/change_pass.php
Normal file
@@ -0,0 +1,24 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Middleware;
|
||||
|
||||
use Closure;
|
||||
use Illuminate\Support\Facades\Auth;
|
||||
|
||||
class change_pass
|
||||
{
|
||||
/**
|
||||
* Handle an incoming request.
|
||||
*
|
||||
* @param \Illuminate\Http\Request $request
|
||||
* @param \Closure $next
|
||||
* @return mixed
|
||||
*/
|
||||
public function handle($request, Closure $next)
|
||||
{
|
||||
if (Auth::user()->change_pass == null) {
|
||||
return redirect()->route('change_pass')->with('warning', 'Please, change your password first');
|
||||
}
|
||||
return $next($request);
|
||||
}
|
||||
}
|
||||
28
glass_report/app/Providers/AppServiceProvider.php
Normal file
28
glass_report/app/Providers/AppServiceProvider.php
Normal file
@@ -0,0 +1,28 @@
|
||||
<?php
|
||||
|
||||
namespace App\Providers;
|
||||
|
||||
use Illuminate\Support\ServiceProvider;
|
||||
|
||||
class AppServiceProvider extends ServiceProvider
|
||||
{
|
||||
/**
|
||||
* Register any application services.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function register()
|
||||
{
|
||||
//
|
||||
}
|
||||
|
||||
/**
|
||||
* Bootstrap any application services.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function boot()
|
||||
{
|
||||
//
|
||||
}
|
||||
}
|
||||
30
glass_report/app/Providers/AuthServiceProvider.php
Normal file
30
glass_report/app/Providers/AuthServiceProvider.php
Normal file
@@ -0,0 +1,30 @@
|
||||
<?php
|
||||
|
||||
namespace App\Providers;
|
||||
|
||||
use Illuminate\Foundation\Support\Providers\AuthServiceProvider as ServiceProvider;
|
||||
use Illuminate\Support\Facades\Gate;
|
||||
|
||||
class AuthServiceProvider extends ServiceProvider
|
||||
{
|
||||
/**
|
||||
* The policy mappings for the application.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $policies = [
|
||||
// 'App\Model' => 'App\Policies\ModelPolicy',
|
||||
];
|
||||
|
||||
/**
|
||||
* Register any authentication / authorization services.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function boot()
|
||||
{
|
||||
$this->registerPolicies();
|
||||
|
||||
//
|
||||
}
|
||||
}
|
||||
21
glass_report/app/Providers/BroadcastServiceProvider.php
Normal file
21
glass_report/app/Providers/BroadcastServiceProvider.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace App\Providers;
|
||||
|
||||
use Illuminate\Support\Facades\Broadcast;
|
||||
use Illuminate\Support\ServiceProvider;
|
||||
|
||||
class BroadcastServiceProvider extends ServiceProvider
|
||||
{
|
||||
/**
|
||||
* Bootstrap any application services.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function boot()
|
||||
{
|
||||
Broadcast::routes();
|
||||
|
||||
require base_path('routes/channels.php');
|
||||
}
|
||||
}
|
||||
34
glass_report/app/Providers/EventServiceProvider.php
Normal file
34
glass_report/app/Providers/EventServiceProvider.php
Normal file
@@ -0,0 +1,34 @@
|
||||
<?php
|
||||
|
||||
namespace App\Providers;
|
||||
|
||||
use Illuminate\Auth\Events\Registered;
|
||||
use Illuminate\Auth\Listeners\SendEmailVerificationNotification;
|
||||
use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;
|
||||
use Illuminate\Support\Facades\Event;
|
||||
|
||||
class EventServiceProvider extends ServiceProvider
|
||||
{
|
||||
/**
|
||||
* The event listener mappings for the application.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $listen = [
|
||||
Registered::class => [
|
||||
SendEmailVerificationNotification::class,
|
||||
],
|
||||
];
|
||||
|
||||
/**
|
||||
* Register any events for your application.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function boot()
|
||||
{
|
||||
parent::boot();
|
||||
|
||||
//
|
||||
}
|
||||
}
|
||||
80
glass_report/app/Providers/RouteServiceProvider.php
Normal file
80
glass_report/app/Providers/RouteServiceProvider.php
Normal file
@@ -0,0 +1,80 @@
|
||||
<?php
|
||||
|
||||
namespace App\Providers;
|
||||
|
||||
use Illuminate\Foundation\Support\Providers\RouteServiceProvider as ServiceProvider;
|
||||
use Illuminate\Support\Facades\Route;
|
||||
|
||||
class RouteServiceProvider extends ServiceProvider
|
||||
{
|
||||
/**
|
||||
* This namespace is applied to your controller routes.
|
||||
*
|
||||
* In addition, it is set as the URL generator's root namespace.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $namespace = 'App\Http\Controllers';
|
||||
|
||||
/**
|
||||
* The path to the "home" route for your application.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public const HOME = '/home';
|
||||
|
||||
/**
|
||||
* Define your route model bindings, pattern filters, etc.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function boot()
|
||||
{
|
||||
//
|
||||
|
||||
parent::boot();
|
||||
}
|
||||
|
||||
/**
|
||||
* Define the routes for the application.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function map()
|
||||
{
|
||||
$this->mapApiRoutes();
|
||||
|
||||
$this->mapWebRoutes();
|
||||
|
||||
//
|
||||
}
|
||||
|
||||
/**
|
||||
* Define the "web" routes for the application.
|
||||
*
|
||||
* These routes all receive session state, CSRF protection, etc.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
protected function mapWebRoutes()
|
||||
{
|
||||
Route::middleware('web')
|
||||
->namespace($this->namespace)
|
||||
->group(base_path('routes/web.php'));
|
||||
}
|
||||
|
||||
/**
|
||||
* Define the "api" routes for the application.
|
||||
*
|
||||
* These routes are typically stateless.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
protected function mapApiRoutes()
|
||||
{
|
||||
Route::prefix('api')
|
||||
->middleware('api')
|
||||
->namespace($this->namespace)
|
||||
->group(base_path('routes/api.php'));
|
||||
}
|
||||
}
|
||||
41
glass_report/app/User.php
Normal file
41
glass_report/app/User.php
Normal file
@@ -0,0 +1,41 @@
|
||||
<?php
|
||||
|
||||
namespace App;
|
||||
|
||||
use Illuminate\Contracts\Auth\MustVerifyEmail;
|
||||
use Illuminate\Foundation\Auth\User as Authenticatable;
|
||||
use Illuminate\Notifications\Notifiable;
|
||||
|
||||
// class User extends Authenticatable
|
||||
class User extends Authenticatable implements MustVerifyEmail
|
||||
{
|
||||
use Notifiable;
|
||||
// protected $table = 'users';
|
||||
|
||||
/**
|
||||
* The attributes that are mass assignable.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
// protected $fillable = [
|
||||
// 'f_name', 's_name', 'l_name', 'email', 'username', 'password',
|
||||
// ];
|
||||
|
||||
/**
|
||||
* The attributes that should be hidden for arrays.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $hidden = [
|
||||
'password', 'remember_token',
|
||||
];
|
||||
|
||||
/**
|
||||
* The attributes that should be cast to native types.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $casts = [
|
||||
'email_verified_at' => 'datetime',
|
||||
];
|
||||
}
|
||||
10
glass_report/app/admin_record.php
Normal file
10
glass_report/app/admin_record.php
Normal file
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
namespace App;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class admin_record extends Model
|
||||
{
|
||||
protected $table = 'users';
|
||||
}
|
||||
11
glass_report/app/irsx.php
Normal file
11
glass_report/app/irsx.php
Normal file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace App;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class irsx extends Model
|
||||
{
|
||||
//
|
||||
protected $table = 'ris';
|
||||
}
|
||||
10
glass_report/app/sample_file.php
Normal file
10
glass_report/app/sample_file.php
Normal file
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
namespace App;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class sample_file extends Model
|
||||
{
|
||||
//
|
||||
}
|
||||
Reference in New Issue
Block a user