Skip to content

Commit 5a2abf6

Browse files
committed
initial commit
1 parent 1a691bb commit 5a2abf6

28 files changed

+1472
-68
lines changed

README.md

+4-14
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,12 @@
1-
title_goes_here [![required php version](https://img.shields.io/packagist/php-v/open-southeners/packagist_package_here)](https://www.php.net/supported-versions.php) [![codecov](https://codecov.io/gh/open-southeners/packagist_package_here/branch/main/graph/badge.svg?token=codecov_badge_token)](https://codecov.io/gh/open-southeners/packagist_package_here) [![Edit on VSCode online](https://img.shields.io/badge/vscode-edit%20online-blue?logo=visualstudiocode)](https://vscode.dev/github/open-southeners/packagist_package_here)
1+
Extended Laravel [![required php version](https://img.shields.io/packagist/php-v/open-southeners/extended-laravel)](https://www.php.net/supported-versions.php) [![codecov](https://codecov.io/gh/open-southeners/extended-laravel/branch/main/graph/badge.svg?token=zx68fmehzI)](https://codecov.io/gh/open-southeners/extended-laravel) [![Edit on VSCode online](https://img.shields.io/badge/vscode-edit%20online-blue?logo=visualstudiocode)](https://vscode.dev/github/open-southeners/extended-laravel)
22
===
33

4-
and_description_here
5-
6-
**Search & replace:**
7-
8-
| Keys | Replacement |
9-
| --------------------------------------------------------- | ------------------------------------------------------------- |
10-
| `title_goes_here` | Fancy title from the repository (only README and stuff) |
11-
| `and_description_here` | Short package description (only for README and composer.json) |
12-
| `packagist_package_here` | Packagist (composer) published package name |
13-
| `codecov_badge_token` | Codecov token for the coverage badge |
14-
| `OpenSoutheners\PhpPackage`, `OpenSoutheners\\PhpPackage` | PSR-0 and PSR-4 complaint package namespace |
4+
Extended Laravel framework functionalities and out-of-the-box stuff
155

166
## Getting started
177

188
```
19-
composer require open-southeners/packagist_package_here
9+
composer require open-southeners/extended-laravel
2010
```
2111

2212
## Partners
@@ -25,4 +15,4 @@ composer require open-southeners/packagist_package_here
2515

2616
## License
2717

28-
This package is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT).
18+
This package is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT).

composer.json

+62-49
Original file line numberDiff line numberDiff line change
@@ -1,52 +1,65 @@
11
{
2-
"name": "open-southeners/packagist_package_here",
3-
"description": "and_description_here",
4-
"license": "MIT",
5-
"keywords": [
6-
"open-southeners"
7-
],
8-
"authors": [
9-
{
10-
"name": "Ruben Robles",
11-
"email": "[email protected]",
12-
"homepage": "https://d8vjork.com"
13-
}
14-
],
15-
"funding": [
16-
{
17-
"type": "github",
18-
"url": "https://github.com/sponsors/open-southeners"
19-
}
20-
],
21-
"require": {
22-
"php": "^8.1"
23-
},
24-
"require-dev": {
25-
"larastan/larastan": "^2.0",
26-
"orchestra/testbench": "^8.0 || ^9.0",
27-
"phpstan/phpstan": "^1.0",
28-
"phpunit/phpunit": "^10.0"
29-
},
30-
"minimum-stability": "stable",
31-
"prefer-stable": true,
32-
"autoload": {
33-
"psr-4": {
34-
"OpenSoutheners\\PhpPackage\\": "src"
35-
}
36-
},
37-
"autoload-dev": {
38-
"psr-4": {
39-
"OpenSoutheners\\PhpPackage\\Tests\\": "tests"
40-
}
41-
},
42-
"config": {
43-
"sort-packages": true
2+
"name": "open-southeners/packagist_package_here",
3+
"description": "and_description_here",
4+
"license": "MIT",
5+
"keywords": [
6+
"open-southeners",
7+
"laravel",
8+
"utilities",
9+
"php8",
10+
"php"
11+
],
12+
"authors": [
13+
{
14+
"name": "Ruben Robles",
15+
"email": "[email protected]",
16+
"homepage": "https://d8vjork.com"
17+
}
18+
],
19+
"funding": [
20+
{
21+
"type": "github",
22+
"url": "https://github.com/sponsors/open-southeners"
23+
}
24+
],
25+
"require": {
26+
"php": "^8.1",
27+
"open-southeners/byte-unit-converter": "^3.0",
28+
"open-southeners/extended-php": "^1.0"
29+
},
30+
"require-dev": {
31+
"larastan/larastan": "^2.0",
32+
"laravel/cashier": "^15.0",
33+
"laravel/passport": "^12.0",
34+
"laravel/pint": "^1.5",
35+
"laravel/socialite": "^5.0",
36+
"orchestra/testbench": "^8.0 || ^9.0",
37+
"phpstan/phpstan": "^1.0",
38+
"phpunit/phpunit": "^10.0"
39+
},
40+
"minimum-stability": "stable",
41+
"prefer-stable": true,
42+
"autoload": {
43+
"psr-4": {
44+
"OpenSoutheners\\ExtendedLaravel\\": "src"
45+
}
46+
},
47+
"autoload-dev": {
48+
"psr-4": {
49+
"OpenSoutheners\\ExtendedLaravel\\Tests\\": "tests"
4450
},
45-
"extra": {
46-
"laravel": {
47-
"providers": [
48-
"OpenSoutheners\\PhpPackage\\ServiceProvider"
49-
]
50-
}
51+
"files": [
52+
"src/Models/functions.php"
53+
]
54+
},
55+
"config": {
56+
"sort-packages": true
57+
},
58+
"extra": {
59+
"laravel": {
60+
"providers": [
61+
"OpenSoutheners\\ExtendedLaravel\\ServiceProvider"
62+
]
5163
}
52-
}
64+
}
65+
}

src/AboutCommandIntegration.php

+114
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,114 @@
1+
<?php
2+
3+
namespace OpenSoutheners\ExtendedLaravel;
4+
5+
use Illuminate\Foundation\Console\AboutCommand;
6+
use Illuminate\Support\Facades\Storage;
7+
use Illuminate\Support\Str;
8+
use Laravel\Cashier\Cashier;
9+
use Laravel\Passport\Passport;
10+
use Laravel\Socialite\Contracts\Factory;
11+
use ReflectionClass;
12+
use Stripe\Stripe;
13+
14+
class AboutCommandIntegration
15+
{
16+
public static function register()
17+
{
18+
if (! class_exists(AboutCommand::class)) {
19+
return;
20+
}
21+
22+
(new static)
23+
->printExtendedDriversInfo()
24+
->printIntegrationsInfo()
25+
->printCashierInfo();
26+
}
27+
28+
private function getUserConfigured(string $variable, string $value): string
29+
{
30+
$userConfiguredValue = env($variable);
31+
32+
if (! empty($userConfiguredValue)) {
33+
return sprintf('<fg=yellow;options=bold>%s</>', $value);
34+
}
35+
36+
return $value;
37+
}
38+
39+
public function printExtendedDriversInfo(): self
40+
{
41+
AboutCommand::add('Drivers', fn (): array => [
42+
'Storage' => $this->getUserConfigured('FILESYSTEM_DISK', Storage::getDefaultDriver()),
43+
]);
44+
45+
return $this;
46+
}
47+
48+
public function printIntegrationsInfo(): self
49+
{
50+
AboutCommand::add('Integrations', function (): array {
51+
$integrations = [];
52+
53+
if (class_exists(Factory::class)) {
54+
$socialiteManager = app(Factory::class);
55+
56+
$providers = array_keys((new ReflectionClass($socialiteManager))
57+
->getProperty('customCreators')
58+
->getValue($socialiteManager));
59+
60+
$integrations['Socialite'] = sprintf(
61+
'%s %s',
62+
! empty($providers) ? '<fg=green;options=bold>YES</>' : '<fg=yellow;options=bold>NO</>',
63+
! empty($providers) ? Str::wrap(implode(', ', $providers), '(', ')') : ''
64+
);
65+
}
66+
67+
if (class_exists(Passport::class)) {
68+
$integrations['Passport'] = (
69+
! empty(env('PASSPORT_PRIVATE_KEY')) && ! empty(env('PASSPORT_PUBLIC_KEY'))
70+
|| (Passport::keyPath('oauth-public.key') && Passport::keyPath('oauth-private.key')
71+
)) ? '<fg=green;options=bold>YES</>' : '<fg=yellow;options=bold>NO</>';
72+
}
73+
74+
return $integrations;
75+
});
76+
77+
return $this;
78+
}
79+
80+
public function printCashierInfo(): self
81+
{
82+
$cashierDriver = match (true) {
83+
class_exists('Laravel\Cashier\Cashier') => 'Stripe',
84+
class_exists('Laravel\Paddle\Cashier') => 'Paddle',
85+
default => false,
86+
};
87+
88+
if (! $cashierDriver) {
89+
return $this;
90+
}
91+
92+
AboutCommand::add('Cashier', function () use ($cashierDriver): array {
93+
$infoArray = [
94+
'Driver' => $cashierDriver,
95+
'Cashier version' => Cashier::VERSION,
96+
'Customer model' => Cashier::$customerModel,
97+
'Enables routes' => Cashier::$registersRoutes ? '<fg=green;options=bold>YES</>' : '<fg=yellow;options=bold>NO</>',
98+
'Enables taxes' => Cashier::$calculatesTaxes ? '<fg=green;options=bold>YES</>' : '<fg=yellow;options=bold>NO</>',
99+
'Enables incomplete subscriptions' => Cashier::$deactivateIncomplete ? '<fg=green;options=bold>YES</>' : '<fg=yellow;options=bold>NO</>',
100+
'Enables past due subscriptions' => Cashier::$deactivatePastDue ? '<fg=green;options=bold>YES</>' : '<fg=yellow;options=bold>NO</>',
101+
];
102+
103+
if ($cashierDriver === 'Stripe') {
104+
$infoArray['Enabled'] = Cashier::stripe()->getApiKey() ? '<fg=green;options=bold>YES</>' : '<fg=yellow;options=bold>NO</>';
105+
$infoArray['Stripe SDK version'] = Stripe::VERSION;
106+
$infoArray['Stripe API version'] = Cashier::STRIPE_VERSION;
107+
}
108+
109+
return $infoArray;
110+
});
111+
112+
return $this;
113+
}
114+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
<?php
2+
3+
namespace OpenSoutheners\ExtendedLaravel\Console\Commands;
4+
5+
use Illuminate\Console\Command;
6+
use Illuminate\Support\Arr;
7+
use Illuminate\Support\Carbon;
8+
use Illuminate\Support\Facades\DB;
9+
10+
class BatchesQueueCommand extends Command
11+
{
12+
/**
13+
* The name and signature of the console command.
14+
*
15+
* @var string
16+
*/
17+
protected $signature = 'queue:batches';
18+
19+
/**
20+
* The console command description.
21+
*
22+
* @var string
23+
*/
24+
protected $description = 'List queued job batches';
25+
26+
/**
27+
* Execute the console command.
28+
*/
29+
public function handle(): int
30+
{
31+
$columns = ['id', 'name', 'completion', 'total_jobs', 'pending_jobs', 'failed_job_ids', 'created_at', 'finished_at'];
32+
33+
$this->table(
34+
Arr::exceptValues($columns, ['total_jobs', 'pending_jobs']),
35+
DB::connection(config('queue.batching.database'))
36+
->table(config('queue.batching.table', 'job_batches'))
37+
->get(Arr::exceptValues($columns, ['completion']))
38+
->map(function (\stdClass $jobBatch) {
39+
$jobBatch = (array) $jobBatch;
40+
41+
$jobBatch['total_jobs'] = sprintf('%d%%', $jobBatch['pending_jobs'] / $jobBatch['total_jobs'] * 100);
42+
43+
unset($jobBatch['pending_jobs']);
44+
45+
$jobBatch['created_at'] = Carbon::createFromTimestamp($jobBatch['created_at']);
46+
47+
if ($jobBatch['finished_at']) {
48+
$jobBatch['finished_at'] = Carbon::createFromTimestamp($jobBatch['finished_at']);
49+
}
50+
51+
return $jobBatch;
52+
})
53+
->all(),
54+
);
55+
56+
return 0;
57+
}
58+
}

0 commit comments

Comments
 (0)