Files
UNIT3D-Community-Edition/app/Http/Controllers/HomeController.php
2018-02-12 12:43:25 -05:00

109 lines
3.5 KiB
PHP
Executable File

<?php
/**
* NOTICE OF LICENSE
*
* UNIT3D is open-sourced software licensed under the GNU General Public License v3.0
* The details is bundled with this project in the file LICENSE.txt.
*
* @project UNIT3D
* @license https://www.gnu.org/licenses/agpl-3.0.en.html/ GNU Affero General Public License v3.0
* @author HDVinnie
*/
namespace App\Http\Controllers;
use Illuminate\Support\Facades\Auth;
use Illuminate\Support\Facades\DB;
use Illuminate\Support\Facades\Request;
use Illuminate\Support\Facades\Mail;
use Illuminate\Support\Facades\Session;
use Illuminate\Support\Facades\View;
use App\Article;
use App\Comment;
use App\Group;
use App\History;
use App\Mail\Contact;
use App\Topic;
use App\Torrent;
use App\Category;
use App\Type;
use App\User;
use App\Peer;
use App\Shoutbox;
use App\Post;
use App\FeaturedTorrent;
use App\UserFreeleech;
use Cache;
use \Toastr;
class HomeController extends Controller
{
public function __construct()
{
parent::__construct();
$this->middleware('private');
}
/**
* Home page
*
* @access public
* @return View home.home
*/
public function home()
{
// Latest Articles Block
$articles = Article::orderBy('created_at', 'desc')->take(1)->get(); // Fetch latest articles
// Latest Torrents Block
$torrents = Torrent::where('sd', '=', 0)->orderBy('created_at', 'desc')->take(5)->get(); // Fetch latest torrents
$best = Torrent::where('sd', '=', 0)->orderBy('seeders', 'desc')->take(5)->get(); // Fetch Top Seeded Torrents
$leeched = Torrent::where('sd', '=', 0)->orderBy('leechers', 'desc')->take(5)->get(); // Fetch Top Leeched Torrents
$dying = Torrent::where('sd', '=', 0)->where('seeders', '=', '1')->where('times_completed', '>=', '1')->orderBy('leechers', 'desc')->take(5)->get(); // Fetch Top Dying Torrents
$dead = Torrent::where('sd', '=', 0)->where('seeders', '=', '0')->orderBy('leechers', 'desc')->take(5)->get(); // Fetch Top Dead Torrents
// Latest Topics Block
$topics = Topic::orderBy('created_at', 'desc')->take(5)->get(); // Fetch latest topics
// Latest Posts Block
$posts = Post::orderBy('created_at', 'desc')->take(5)->get(); // Fetch Latest Forum Posts
//ShoutBox Block
$shoutboxMessages = ShoutboxController::getMessages()['data'];
//Online Block
$user = User::orderBy('username', 'asc')->get();
$groups = Group::orderBy('position', 'asc')->get();
//Featured Torrents
$featured = FeaturedTorrent::with('torrent')->get();
return view('home.home', ['user' => $user, 'groups' => $groups, 'articles' => $articles, 'torrents' => $torrents,
'best' => $best, 'dying' => $dying, 'leeched' => $leeched, 'dead' => $dead, 'topics' => $topics, 'posts' => $posts,
'articles' => $articles, 'shoutboxMessages' => $shoutboxMessages, 'featured' => $featured]);
}
/**
* Contact page, send an email to admins
*
* @access public
* @return View home.contact
*/
public function contact()
{
// Fetch owner account
$user = User::where('id', '=', '3')->first();
if (Request::getMethod() == 'POST') {
$input = Request::all();
Mail::to($user->email, $user->username)->send(new Contact($input));
Toastr::success('Your Message Was Succefully Sent!', 'Success', ['options']);
}
return view('home.contact');
}
}