namespace App\Http\Controllers;
use Illuminate\Http\Request;
use Inertia\Inertia;
use App\Corporations\CreepyPastaMachine\Database\Models\BlogArticle;
class AnomalousBlogController extends Controller {
public function portal($blogid = false)
{
$ClearanceLevelsEN = [ "Level 1" => "Unrestricted", "Level 2" => "Restricted", "Level 3" => "Confidential", "Level 4" => "Secret", "Level 5" => "Top Secret", "Level 6" => "Cosmic Top Secret" ]; $ClearanceLevelsDE = [ "Level 1" => "Uneingeschränkt", "Level 2" => "Eingeschränkt", "Level 3" => "Vertraulich", "Level 4" => "Geheim", "Level 5" => "Streng geheim", "Level 6" => "Kosmisch streng geheim" ]; $DisruptionClasses = [ "Dark" => 1, "Vlam" => 2, "Keneq" => 3, "Ekhi" => 4, "Amida" => 5, ]; $RiskClasses = [ "Notice" => 1, "Caution" => 2, "Warning" => 3, "Danger" => 4, "Critical" => 5, ]; } }
namespace App\Corporations\CreepyPastaMachine\Database\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Relations\HasOne;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
use Illuminate\Database\Eloquent\Model;
use LaravelNeuro\LaravelNeuro\Networking\Database\Models\NetworkProject;
use App\Corporations\CreepyPastaMachine\Database\Models\ScpWarning;
class BlogArticle extends Model {
use HasFactory;
public $timestamps = true;
protected $table = "CPM_blog_articles";
protected $fillable = [ 'project_id', 'original', 'published', 'articleENraw', 'articleDEraw', 'articleEN', 'articleDE', 'articleENvo', 'articleDEvo' ];
namespace App\Corporations\CreepyPastaMachine\Spiders;
use Generator;
use RoachPHP\Http\Request;
use RoachPHP\Http\Response;
use RoachPHP\Spider\BasicSpider;
use RoachPHP\Spider\ParseResult;
use RoachPHP\Extensions\LoggerExtension;
use RoachPHP\Extensions\StatsCollectorExtension;
use RoachPHP\Downloader\Middleware\RequestDeduplicationMiddleware;
class NewsScraper extends BasicSpider
{
public array $downloaderMiddleware = [
RequestDeduplicationMiddleware::class,
];
public array $spiderMiddleware = [
//
];
public array $itemProcessors = [
//
];
public array $extensions = [
LoggerExtension::class,
StatsCollectorExtension::class,
];
public int $concurrency = 2;
public int $requestDelay = 1;
namespace App\Corporations\CreepyPastaMachine;
use Illuminate\Support\Collection;
class Bootstrap
{
public static function models(): Collection
{
$modelsPath = __DIR__ . '/Database/Models';
$files = scandir($modelsPath)
; $models = [];
foreach ($files as $file)
{
// Skip non-PHP files and directoriesif (is_dir($file)
|| pathinfo($file, PATHINFO_EXTENSION)
!== 'php')
{
continue;
}
// Get the class name from the file name
$className = pathinfo($file, PATHINFO_FILENAME)
; // Resolve the full class name with namespace
$fullClassName = "App\\Corporations\\CreepyPastaMachine\\Database\\Models\\$className";
// Check if class exists and is a subclass of Eloquent Model
if (class_exists($fullClassName)
&& is_subclass_of($fullClassName, \Illuminate\Database\Eloquent\Model::class)
) {
// Instantiate the model and add it to the array $models[$className] = new $fullClassName;
}
}
return collect($models)
; }
}
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('CPM_blog_articles', function (Blueprint $table)
{ $table->id();
$table->timestamps();
$table->unsignedBigInteger('project_id')
;
$table->foreign('project_id')
->references('id')
->on('laravel_neuro_network_projects')
;
$table->unsignedBigInteger('original')
;
$table->foreign('original')
->references('id')
->on('CPM_news_articles')
;
$table->boolean('published')
->default(true)
;
$table->text("articleENraw")
->nullable();
$table->text("articleDEraw")
->nullable();
$table->text("articleEN")
->nullable();
$table->text("articleDE")
->nullable();
$table->text("articleENvo")
->nullable();
$table->text("articleDEvo")
->nullable();
});
}
};
root@kbcss:~# composer install
Loading composer repositories with package information
Installing dependencies (including require-dev) from lock file
Package operations: 10 installs, 0 updates, 0 removals
- Installing symfony/polyfill-ctype (v1.18.1): Loading from cache
- Installing phpoption/phpoption (1.7.5): Loading from cache
- Installing vlucas/phpdotenv (v3.6.7): Loading from cache
- Installing symfony/css-selector (v5.1.3): Loading from cache
- Installing tijsverkoyen/css-to-inline-styles (2.2.3): Loading from cache
- Installing symfony/polyfill-php72 (v1.18.1): Loading from cache
- Installing symfony/polyfill-mbstring (v1.18.1): Loading from cache
- Installing symfony/var-dumper (v5.1.3): Loading from cache
- Installing symfony/routing (v5.1.3): Loading from cache
- Installing symfony/process (v5.1.3): Loading from cache
symfony/polyfill-ctype suggests installing ext-ctype (The Ctype extension)
symfony/routing suggests installing symfony/config (For using the all-in-one router or any loader)
symfony/process suggests installing symfony/console (For using the Process component with the Console component)
Writing lock file
Generating optimized autoload files
root@kbcss:~# php artisan migrate
Migrating: 2020_01_01_000001_create_users_table
Migrated: 2020_01_01_000001_create_users_table (0.23 seconds)
Migrating: 2020_01_01_000002_create_password_resets_table
Migrated: 2020_01_01_000002_create_password_resets_table (0.15 seconds)
Migrating: 2020_01_01_000003_create_posts_table
Migrated: 2020_01_01_000003_create_posts_table (0.19 seconds)
root@kbcss:~# composer update
Loading composer repositories with package information
Updating dependencies (including require-dev)
Package operations: 1 install, 2 updates, 0 removals
- Updating symfony/polyfill-ctype (v1.18.1 => v1.19.0): Loading from cache
- Updating phpoption/phpoption (1.7.5 => 1.7.6): Loading from cache
- Installing psr/container (1.0.0): Loading from cache
Writing lock file
Generating optimized autoload files
root@kbcss:~# php artisan serve
Starting Laravel development server: http://127.0.0.1:8000
[Sun May 23 13:57:03 2024] PHP 7.4.3 Development Server (http://127.0.0.1:8000) started
root@kbcss:~# php artisan make:model Task
Model created successfully.
root@kbcss:~# php artisan make:controller TaskController
Controller created successfully.
root@kbcss:~# php artisan make:migration create_tasks_table
Created Migration: 2024_06_01_135703_create_tasks_table
root@kbcss:~# php artisan migrate
Migrating: 2024_06_01_135703_create_tasks_table
Migrated: 2024_06_01_135703_create_tasks_table (0.22 seconds)
root@kbcss:~# composer require barryvdh/laravel-debugbar
Using version ^3.5 for barryvdh/laravel-debugbar
./composer.json has been updated
Loading composer repositories with package information
Updating dependencies (including require-dev)
Package operations: 1 install, 0 updates, 0 removals
- Installing barryvdh/laravel-debugbar (v3.5.7): Loading from cache
Writing lock file
Generating optimized autoload files
root@kbcss:~# composer install
Loading composer repositories with package information
Installing dependencies (including require-dev) from lock file
Package operations: 10 installs, 0 updates, 0 removals
- Installing symfony/polyfill-ctype (v1.18.1): Loading from cache
- Installing phpoption/phpoption (1.7.5): Loading from cache
- Installing vlucas/phpdotenv (v3.6.7): Loading from cache
- Installing symfony/css-selector (v5.1.3): Loading from cache
- Installing tijsverkoyen/css-to-inline-styles (2.2.3): Loading from cache
- Installing symfony/polyfill-php72 (v1.18.1): Loading from cache
- Installing symfony/polyfill-mbstring (v1.18.1): Loading from cache
- Installing symfony/var-dumper (v5.1.3): Loading from cache
- Installing symfony/routing (v5.1.3): Loading from cache
- Installing symfony/process (v5.1.3): Loading from cache
symfony/polyfill-ctype suggests installing ext-ctype (The Ctype extension)
symfony/routing suggests installing symfony/config (For using the all-in-one router or any loader)
symfony/process suggests installing symfony/console (For using the Process component with the Console component)
Writing lock file
Generating optimized autoload files
root@kbcss:~# php artisan migrate
Migrating: 2020_01_01_000001_create_users_table
Migrated: 2020_01_01_000001_create_users_table (0.23 seconds)
Migrating: 2020_01_01_000002_create_password_resets_table
Migrated: 2020_01_01_000002_create_password_resets_table (0.15 seconds)
Migrating: 2020_01_01_000003_create_posts_table