Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
PhiloNL committed Dec 21, 2020
0 parents commit 09ecc18
Show file tree
Hide file tree
Showing 23 changed files with 7,573 additions and 0 deletions.
40 changes: 40 additions & 0 deletions .github/workflows/php.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: PHPUnit

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Validate composer.json and composer.lock
run: composer validate

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '7.4'
extensions: mbstring, intl

- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v2
with:
path: vendor
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-php-
- name: Install dependencies
if: steps.composer-cache.outputs.cache-hit != 'true'
run: composer install --prefer-dist --no-progress --no-suggest

- name: Run test suite
run: composer run-script test
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.idea
/vendor
/.phpunit.result.cache
.DS_Store
21 changes: 21 additions & 0 deletions LICENSE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
The MIT License (MIT)

Copyright (c) Philo Hermans

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
202 changes: 202 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,202 @@
<p align="center"><a href="https://philo.dev" target="_blank"><img src="https://user-images.githubusercontent.com/1133950/101284994-37e83200-37e3-11eb-9475-3327d204a24f.png" width="150"></a></p>

<p align="center">
<a href="https://github.com/PhiloNL/artisan-remote/actions"><img src="https://github.com/PhiloNL/artisan-remote/workflows/PHPUnit/badge.svg" alt="Build Status"></a>
<a href="https://packagist.org/packages/philo/artisan-remote"><img src="https://img.shields.io/packagist/dt/philo/artisan-remote" alt="Total Downloads"></a>
<a href="https://packagist.org/packages/philo/artisan-remote"><img src="https://img.shields.io/packagist/v/philo/artisan-remote" alt="Latest Stable Version"></a>
<a href="https://packagist.org/packages/philo/artisan-remote"><img src="https://img.shields.io/packagist/l/philo/artisan-remote" alt="License"></a>
</p>

## About Artisan Remote
Artisan Remote is a package for Laravel to interact with your Artisan Commands via an HTTP API.

## Artisan Remote Desktop
<p align="center"><a href="https://unlock.sh/download/a428d391-79a8-4300-b7f7-ace69518525b" target="_blank"><img src="https://user-images.githubusercontent.com/1133950/101404659-38fa8b80-38d7-11eb-9fef-89784960b433.png"></a></p>

If you want an easy way to interact with your Artisan commands via the UI, be sure to download the desktop app, which integrates with the Artisan Remote API.

- Execute commands with just a click.
- Provider command parameters via simple input fields.
- Track output of previously executed commands.
- Supports unlimited Laravel application.
- Your application environment details in one single overview.
- Works on Mac, Windows and Linux.

[Download for Mac, Windows or Linux](https://unlock.sh/download/a428d391-79a8-4300-b7f7-ace69518525b) distribution via [Unlock](https://unlock.sh).

## Installation
To get started, require the package via Composer:

```
composer require philo/artisan-remote
```

## API endpoints
The environment endpoint will return information about your application environment, like your PHP and Laravel version.
```json
GET /artisan-remote/environment

Content-Type: application/json
Accept: application/json
Authorization: Bearer 039ede05-d2c1-4ab4-8869-945e805e6bbc

{
"applicationName": "Unlock.sh",
"phpVersion": "7.4.12",
"frameworkVersion": "7.28.1",
"environment": "production",
"inMaintenanceMode": true,
"maxExecutionTime": "30"
}
```

Get a list of the available commands. You can define the commands you want to make available in the `artisan-remote.php` config file.

```json
GET /artisan-remote/commands

Content-Type: application/json
Accept: application/json
Authorization: Bearer 039ede05-d2c1-4ab4-8869-945e805e6bbc

[
{
"name": "down",
"description": "Put the application into maintenance mode",
"arguments": [],
"options": [
{
"name": "message",
"description": "The message for the maintenance mode",
"default": null,
"isArray": false,
"isRequired": false,
"isOptional": true
},
{
"name": "retry",
"description": "The number of seconds after which the request may be retried",
"default": null,
"isArray": false,
"isRequired": false,
"isOptional": true
},
{
"name": "allow",
"description": "IP or networks allowed to access the application while in maintenance mode",
"default": [],
"isArray": true,
"isRequired": false,
"isOptional": true
}
]
},
{
"name": "up",
"description": "Bring the application out of maintenance mode",
"arguments": [],
"options": []
}
]
```

And finally, you can use the invoke endpoint to execute your command.

```json
POST /artisan-remote/commands/invoke

Content-Type: application/json
Accept: application/json
Authorization: Bearer 039ede05-d2c1-4ab4-8869-945e805e6bbc

{
"name": "down",
"options": {
"message": "We will be back in 15 minutes",
"retry": "900",
"allow": [
"127.0.0.1"
]
}
}

// Response
{
"rawCommandOutput": "\u001b[33mApplication is now in maintenance mode.\u001b[39m\n",
"HtmlCommandOutput": "<span style=\"background-color: transparent; color: #e5e510\">Application is now in maintenance mode.<\/span><span style=\"background-color: transparent; color: #e5e5e5\">\n<\/span>",
"exitCode": 0,
"executionTime": 0.017518997192382812
}
```

## API authorization
Before you can make requests to the API endpoints, you need to set up authorization. You can authorize access to specific commands in the `artisan-remote.php` config file. For example, you might want to allow your client to run the artisan up and down commands.

```php
<?php

return [
'commands' => [
\Illuminate\Foundation\Console\UpCommand::class,
\Illuminate\Foundation\Console\DownCommand::class,
\Illuminate\Cache\Console\ClearCommand::class,
],
'auth' => [
// This API token will be able to access only the up and down command.
'79e9ab08-bdc0-4bef-8af2-5e5b5579f9af' => [
\Illuminate\Foundation\Console\UpCommand::class,
\Illuminate\Foundation\Console\DownCommand::class,
],
// This API token will be able to access the up, down and cache:clear command.
'3c562cb3-62ba-4fe4-9875-528ecae6e8b4' => ['*'],
],
'route_prefix' => 'artisan-remote',
];
```

It's best practice not to include any credentials directly in your configuration file, so make sure to use environment variables in production.

```php
// artisan-remote.php
'auth' => [
env('CLIENT_ARTISAN_REMOTE_API_KEY') => [
\Illuminate\Foundation\Console\UpCommand::class,
\Illuminate\Foundation\Console\DownCommand::class,
],
]

// .env
CLIENT_ARTISAN_REMOTE_API_KEY=79e9ab08-bdc0-4bef-8af2-5e5b5579f9af
```


##### Running commands when your application is in maintenance mode
By default, you will not be able to execute commands when your application is in maintenance. To run commands while your application is in maintenance mode, you will need to adjust the CheckForMaintenanceMode middleware.

```php
// app/Http/Middleware/CheckForMaintenanceMode.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 = [
'artisan-remote/*'
];
}
```


## Credits
- [Philo Hermans](https://github.com/philoNL)
- [All Contributors](../../contributors)

## License
Artisan Remote is open-sourced software licensed under the [MIT license](LICENSE.md).
50 changes: 50 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
{
"name": "philo/artisan-remote",
"description": "An HTTP API to interact with Laravel Artisan commands.",
"keywords": [
"laravel",
"artisan",
"api"
],
"license": "MIT",
"authors": [
{
"name": "Philo Hermans",
"email": "me@philohermans.com"
}
],
"require": {
"php": "^7.2.5",
"illuminate/support": "^7.17",
"sensiolabs/ansi-to-html": "^1.2"
},
"require-dev": {
"orchestra/testbench": "^5.3",
"phpunit/phpunit": "^9.2"
},
"autoload": {
"psr-4": {
"Philo\\ArtisanRemote\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Philo\\ArtisanRemote\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Philo\\ArtisanRemote\\ArtisanRemoteServiceProvider"
]
}
},
"config": {
"sort-packages": true
},
"scripts": {
"test": "./vendor/bin/phpunit"
},
"minimum-stability": "dev",
"prefer-stable": true
}

0 comments on commit 09ecc18

Please sign in to comment.