Skip to content

Repository files navigation

this package is for managing the license management system for xgenious internals

Latest Version on Packagist Total Downloads

Installation

You can install the package via composer:

composer require xgenious/xgapiclient

You can publish and run the migrations with:

php artisan vendor:publish --tag="xgapiclient-migrations" 
php artisan migrate

You can publish the config file with:

php artisan vendor:publish --tag="xgapiclient-config"

Optionally, you can publish the views using

php artisan vendor:publish --tag="xgapiclient-views"

V2 Chunked Update System Installation

For the new V2 chunked update system, you need to publish the JavaScript assets:

php artisan vendor:publish --tag=xgapiclient-assets

This publishes UpdateManager.js to assets/vendor/xgapiclient/js/.

Ensure the update storage directory exists:

mkdir -p storage/app/xg-update
chmod 755 storage/app/xg-update

Configuration

This is the contents of the published config file (config/xgapiclient.php):

return [
    /*
    |--------------------------------------------------------------------------
    | Base API URL
    |--------------------------------------------------------------------------
    |
    | The license server every product talks to. Fixed - not .env-driven.
    |
    */
    "base_api_url" => "https://license.xgenious.com",

    /*
    |--------------------------------------------------------------------------
    | Product Token
    |--------------------------------------------------------------------------
    |
    | Unique product code for license server identification.
    |
    */
    "has_token" => env('XG_PRODUCT_TOKEN', ""),

    /*
    |--------------------------------------------------------------------------
    | V2 Update System Configuration
    |--------------------------------------------------------------------------
    |
    | Internal tuning for the chunked update system (V2) - fixed defaults,
    | not .env-driven.
    |
    */
    "update" => [
        "chunk_size" => 10 * 1024 * 1024, // 10MB
        "download_timeout" => 300,
        "extraction_batch_size" => 100,
        "replacement_batch_size" => 50,
        "enable_backup" => true,
        "smart_vendor_replacement" => true,
        "max_retries" => 3,
        "status_file" => storage_path('app/xg-update/.update-status.json'),
        "temp_directory" => storage_path('app/xg-update'),
    ],
];

Environment Variables

Only one variable is needed in your .env file:

XG_PRODUCT_TOKEN=your-unique-product-token

Everything else (which license server to talk to, chunk size, batch sizes, retry count, backup, smart-vendor-replacement) is a fixed internal default as of 6.5.3 - not .env-configurable, so a mistyped or malformed override on the hosting side can no longer break the update pipeline or misdirect licensing.

Usage

$xgapiclient = new XgApiClient\XgApiClient();
echo $xgapiclient->echoPhrase('Hello, XgApiClient!');

Testing

composer test

Changelog

Please see CHANGELOG for more information on what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security Vulnerabilities

Please review our security policy on how to report security vulnerabilities.

Credits

License

The MIT License (MIT). Please see License File for more information.

About

A package to manage xgenious license and auto update

Resources

Stars

1 star

Watchers

0 watching

Forks

Releases

Packages

Used by

Contributors

Languages