Skip to content

Complete integration of the InterNetX GmbH SSLManager Json API packed in a composer package for Laravel.

License

Notifications You must be signed in to change notification settings

InterNetX-DL/Laravel-SSL-Manager

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Laravel-SSL-MANAGER

Complete integration of the InterNetX GmbH SSLManager Json API.

Table of Contents

  1. Install
  2. Configuration
  3. Usage
  4. API Calls
  5. Helper Methods
  6. Artisan Commands
  7. Exception Handling
  8. Changelog
  9. Additional Information
  10. Copyright And License

Install

Composer

composer require ephenodrom/laravel-ssl-manager

Add the provider

Add the following line to your app configuration at config/app.php within the "providers" array.

Ephenodrom\LaravelSslManagerServiceProvider::class

Configuration

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.

Usage

API Calls

Contact Create

Route

POST /sslcontact

Contact Update

Route

PUT /sslcontact/$id

Contact Delete

Route

DELETE /sslcontact/$id

Contact Info

Route

GET /sslcontact/$id

Contact List

Route

POST /sslcontact/_search

Certificate Create

Route

POST /certificate

Certificate Reissue

Route

PUT /certificate/$id

Certificate Delete

Route

DELETE /certificate/$id

Certificate Info

Route

GET /certificate/$id

Certificate List

Route

POST /certificate/_search

Certificate Renew

Route

PUT /certificate/$id/renew

Certificate Revoke

Route

DELETE /certificate/$id/revoke

Certificate Prepare Order

Route

Certificate Comment Update

Route

PUT /certificate/$id/comment

Job Info

Route

GET /job/$id

Job List

Route

POST /job/_search

Job Cancel

Route

GET /job/$id/cancel

Job Confirm

Route

GET /job/$id/confirm

Job Reject

Route

GET /job/$id/reject

Job History Info

Route

GET /job/history/$id

Job History List

Route

POST /job/history/_search

Poll Info

Route

GET /poll

Poll Confirm

Route

POST /poll/$id

Helper Methods

Artisan Commands

Task Commands

This package includes a artisan command for each task.

SSLContact Tasks

  • 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

Certificate Tasks

Job Tasks

  • 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

Poll Tasks

  • PollInfo
php artisan poll:info
  • PollConfirm
php artisan poll:confirm 121

Helper Commands

Exception Handling

Changelog

Version 1.0.0 (2018-05-01)

  • Initial release

Additional Information

  • This software is not developed by InterNetX GmbH !

Copyright And License

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.

About

Complete integration of the InterNetX GmbH SSLManager Json API packed in a composer package for Laravel.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages