Add WeBuy license validation and usage logging API endpoints

- Add /api/license/webuy/ endpoint for license validation
- Add /api/license/webuy/log/ endpoint for usage logging
- Logs stored in /var/www/logs/webuy_usage.log

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
root
2025-11-30 10:57:55 +00:00
parent f9312acb47
commit 72d7a641f0
2 changed files with 39 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
<?php
header('Content-Type: application/json');
if ($_SERVER['REQUEST_METHOD'] !== 'POST') {
http_response_code(405);
exit;
}
$input = json_decode(file_get_contents('php://input'), true);
if (!$input || empty($input['machineId']) || empty($input['timestamp'])) {
http_response_code(400);
exit;
}
$logEntry = sprintf(
"%s | %s | %s\n",
date('Y-m-d H:i:s'),
$input['machineId'],
$input['timestamp']
);
$logFile = __DIR__ . '/../../../../../logs/webuy_usage.log';
file_put_contents($logFile, $logEntry, FILE_APPEND | LOCK_EX);
http_response_code(200);
echo '{"status":"ok"}';