Complete integration of the InterNetX GmbH SSLManager Json API.
- Install
- Configuration
- Usage
- API Calls
- Contact Create
- Contact Update
- Contact Delete
- Contact Info
- Contact List
- Certificate Create
- Certificate Reissue
- Certificate Delete
- Certificate Info
- Certificate List
- Certificate Renew
- Certificate Revoke
- Certificate Prepare Order
- Certificate Comment Update
- Job Info
- Job List
- Job Cancel
- Job Confirm
- Job Reject
- Job History Info
- Job History List
- Poll Info
- Poll Confirm
- Helper Methods
- Artisan Commands
- Exception Handling
- Changelog
- Additional Information
- Copyright And License
composer require ephenodrom/laravel-ssl-manager
Add the following line to your app configuration at config/app.php within the "providers" array.
Ephenodrom\LaravelSslManagerServiceProvider::class
In order to use the implementation, different configurations have to be made beforehand. Add the following keys to your .env file.
Key | Type | Description |
---|---|---|
SSL_MANAGER_API_URL | url | The url of the API backend. |
SSL_MANAGER_API_USER | string | The API user. |
SSL_MANAGER_API_PASSWORD | string | The password of the user. |
SSL_MANAGER_API_CONTEXT | integer | The context of the user. |
POST /sslcontact
PUT /sslcontact/$id
DELETE /sslcontact/$id
GET /sslcontact/$id
POST /sslcontact/_search
POST /certificate
PUT /certificate/$id
DELETE /certificate/$id
GET /certificate/$id
POST /certificate/_search
PUT /certificate/$id/renew
DELETE /certificate/$id/revoke
PUT /certificate/$id/comment
GET /job/$id
POST /job/_search
GET /job/$id/cancel
GET /job/$id/confirm
GET /job/$id/reject
GET /job/history/$id
POST /job/history/_search
GET /poll
POST /poll/$id
This package includes a artisan command for each task.
- SSLContactCreate
php artisan sslcontact:create 121
- SSLContactUpdate
php artisan sslcontact:update 121
- SSLContactDelete
php artisan sslcontact:delete 121
- SSLContactInfo
php artisan sslcontact:info 121
- SSLContactList
php artisan sslcontact:list
- JobInfo
php artisan job:info 121
- JobList
php artisan poll:list
- JobConfirm
php artisan poll:confirm 121
- JobCancel
php artisan poll:cancel 121
- JobReject
php artisan poll:reject 121
- JobHistoryInfo
php artisan job:historyinfo 121
- JobHistoryList
php artisan job:historylist
- PollInfo
php artisan poll:info
- PollConfirm
php artisan poll:confirm 121
- Initial release
- This software is not developed by InterNetX GmbH !
MIT License
Copyright (c) 2018 Ephenodrom
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.