定制 mhasnainjafri/cpanel 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

mhasnainjafri/cpanel

Composer 安装命令:

composer require mhasnainjafri/cpanel

包简介

Laravel CPanel API Library for Managing cPanel Functionalities

README 文档

README

License Open Issues Stars Forks

Library Name: Laravel CPanel API

This library provides a convenient way to interact with the cPanel API using Laravel. It allows you to perform various cPanel functions such as creating subdomains, managing databases, handling email accounts, and managing disk usage.

Installation

To use this library in your Laravel project, you can install it via Composer. Run the following command in your terminal:


composer require mhasnainjafri/cpanel

Usage

To get started, you need to create a new instance of the Cpanel class. There are two ways to initialize the class:

  1. Without any parameters:
$cpanel = new Cpanel();
  1. With parameters (if not defined in .env file):
$cpanel = new Cpanel($cpanel_domain, $cpanel_api_token, $cpanel_username, 'https', 2083);

Alternatively, you can set the cPanel credentials in the .env file:

CPANEL_DOMAIN=domain e.g : xyz.com
CPANEL_PORT=cpanel port (mostly is) 2083
CPANEL_API_TOKEN= Cpanel api token (To get api token view step 3)
CPANEL_USERNAME= Cpanel username
  1. Steps to get Cpanel Api

  • search api in cpanel search bar
  • click on Manage api token step 1
  • Give token a name and click on create step 2
  • Copy the token you get

Subdomain Functions

To create a subdomain, use the createSubDomain() method:

$cpanel->createSubDomain('Sub domain e.g: web', 'domain e.g: xyz.com', 'Path where subdomain points e.g: /home/domain/public_html/subdomain');

Database Functions

To list all databases, use the listDatabases() method:

$cpanel->listDatabases();

To create a new database, use the createDatabase() method:

$cpanel->createDatabase('Database Name');

To delete a database, use the deleteDatabase() method:

$cpanel->deleteDatabase('Database Name');

To create a database user, use the createDatabaseUser() method:

$cpanel->createDatabaseUser('Database username', 'password');

To delete a database user, use the deleteDatabaseUser() method:

$cpanel->deleteDatabaseUser('Database username');

To set all privileges on a database for a user, use the setAllPrivilegesOnDatabase() method:

$cpanel->setAllPrivilegesOnDatabase('Database username', 'Database Name');

Mail Functions

To create a POP email account, use the createPopEmailAccount() method:

$cpanel->createPopEmailAccount('mail@domain.com', 'password');

To delete a POP email account, use the deletePopEmailAccount() method:

$cpanel->deletePopEmailAccount('mail@domain.com');

To edit the mailbox quota for an email account, use the editMailboxQuota() method:

$cpanel->editMailboxQuota($email, $domain, $quota);

To dispatch client settings for an email account, use the dispatchClientSettings() method:

$cpanel->dispatchClientSettings('mail@domain.com', 'account');

To get the POP email count, use the getPopEmailCount() method:

$cpanel->getPopEmailCount();

cPanel Disk Management

To get cPanel statistics bar stats for bandwidth usage or disk usage, use the getCpanelStatsBarStats() method:

$cpanel->getCpanelStatsBarStats('bandwidthusage|diskusage');

To get cPanel disk quota information, use the getCpanelDiskQuotaInfo() method:

$cpanel->getCpanelDiskQuotaInfo();

Other API Functions

To call any other cPanel API function, use the callUAPI() method:

$cpanel->callUAPI($Module, $function, $parameters_array = array());

Replace $Module with the desired module, $function with the function name, and $parameters_array with any additional parameters required by the API function.

That's it! You can now leverage the power of the Laravel CPanel API library to interact with the cPanel API seamlessly in your Laravel applications.

Testing

composer test

Changelog

Please see CHANGELOG for more information what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security

If you discover any security related issues, please email mhasnainjafri0099@gmail.com instead of using the issue tracker.

Credits

License

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

Laravel Package Boilerplate

This package was generated using the Laravel Package Boilerplate.

mhasnainjafri/cpanel 适用场景与选型建议

mhasnainjafri/cpanel 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 16.65k 次下载、GitHub Stars 达 18, 最近一次更新时间为 2023 年 07 月 23 日, 在 PHP 生态内属于活跃度较高的组件。

它主要适用于以下技术方向: 「cpanel」 「laravel-cpanel-api」 「cpanel-api」 「cpanel-library」 「cpanel-management」 「cpanel-utilities」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。

我们在过去多个企业项目中使用过 mhasnainjafri/cpanel 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 mhasnainjafri/cpanel 我们能提供哪些服务?
定制开发 / 二次开发

基于 mhasnainjafri/cpanel 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

  • 总下载量: 16.65k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 20
  • 点击次数: 32
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 18
  • Watchers: 2
  • Forks: 1
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2023-07-23