Create New Folder
Create New File
Preview of RateConProcessor.php
<?php
require_once __DIR__ . '/src/Services/Logger.php';
class RateConProcessor {
private $mcleodApiKey;
private $mcleodApiEndpoint;
private $storagePath;
private $logger;
public function __construct($mcleodApiKey, $mcleodApiEndpoint, $storagePath = null) {
$this->mcleodApiKey = $mcleodApiKey;
$this->mcleodApiEndpoint = $mcleodApiEndpoint;
// Fallback log and storage paths
$fallbackLogDir = '/tmp/mcleod_logs/';
$fallbackStoragePath = '/tmp/mcleod_storage/';
// Ensure fallback directories exist
if (!file_exists($fallbackLogDir)) {
@mkdir($fallbackLogDir, 0755, true);
}
if (!file_exists($fallbackStoragePath)) {
@mkdir($fallbackStoragePath, 0755, true);
}
// Set storage path with fallback
if ($storagePath === null) {
$this->storagePath = $fallbackStoragePath;
} else {
$t
Parent Directory
logs
meki
src
templates
RateConProcessor.php
commodity-lookup.php
commodity_codes.txt
composer.json
create-location.php
file_manager.php
get-customer-by-mc.php
index.html
mcleod-editor.js
process-ratecon.php
search-customer.php
search-location.php
send-to-mcleod.php