Enhance Torn Vault Tracker: Add documentation, improve exception handling, and update styles
Deploy website via FTP / Deploy (push) Skipped
Deploy website via FTP / Deploy (push) Skipped
- Updated .gitignore to exclude new directories and files. - Enhanced config.php with detailed PHPDoc comments for better clarity. - Refactored functions.php to include PHPDoc comments and improve code readability. - Added custom exceptions in exceptions.php with detailed documentation. - Improved utilities.php with better documentation and error handling. - Updated index.php with structured comments and improved readability. - Refined style.css for better visual consistency. - Introduced phpcs.xml for coding style checks and standards enforcement.
This commit is contained in:
@@ -3,3 +3,5 @@ backup/
|
|||||||
debug.log
|
debug.log
|
||||||
data/*
|
data/*
|
||||||
!data/.gitkeep
|
!data/.gitkeep
|
||||||
|
.claude/
|
||||||
|
phpcs-results.txt
|
||||||
|
|||||||
+11
-1
@@ -1,5 +1,15 @@
|
|||||||
<?php
|
<?php
|
||||||
// Configuration file for settings like database and API keys
|
/**
|
||||||
|
* Configuration file for settings like database and API keys
|
||||||
|
*
|
||||||
|
* PHP version 8.1+
|
||||||
|
*
|
||||||
|
* @category Configuration
|
||||||
|
* @package TornVaultTracker
|
||||||
|
* @author Keith Solomon <ksolomon@gmail.com>
|
||||||
|
* @license Unlicense https://unlicense.org/
|
||||||
|
* @link https://github.com/ksolomon/TornVaultTracker
|
||||||
|
*/
|
||||||
|
|
||||||
// Database settings
|
// Database settings
|
||||||
define('DB_DSN', 'sqlite:data/vault.db'); // Path to your SQLite database
|
define('DB_DSN', 'sqlite:data/vault.db'); // Path to your SQLite database
|
||||||
|
|||||||
+40
-13
@@ -1,12 +1,25 @@
|
|||||||
<?php
|
<?php
|
||||||
// Include settings from a separate configuration file
|
/**
|
||||||
|
* Functions for the Torn Vault Tracker application.
|
||||||
|
*
|
||||||
|
* PHP version 8.1+
|
||||||
|
*
|
||||||
|
* @category Functions
|
||||||
|
* @package TornVaultTracker
|
||||||
|
* @author Keith Solomon <ksolomon@gmail.com>
|
||||||
|
* @license Unlicense https://unlicense.org/
|
||||||
|
* @link https://github.com/ksolomon/TornVaultTracker
|
||||||
|
*/
|
||||||
|
|
||||||
|
// Include settings from configuration file
|
||||||
require_once __DIR__ . '/config.php';
|
require_once __DIR__ . '/config.php';
|
||||||
|
|
||||||
// Include utility functions
|
// Include utility functions
|
||||||
require_once 'includes/exceptions.php';
|
require_once 'includes/exceptions.php';
|
||||||
require_once 'includes/utilities.php';
|
require_once 'includes/utilities.php';
|
||||||
|
|
||||||
/** Returns a PDO connection to the database
|
/**
|
||||||
|
* Returns a PDO connection to the database
|
||||||
* This function creates the database connection and creates the database
|
* This function creates the database connection and creates the database
|
||||||
* file if it doesn't exist, and the vault table if it doesn't exist.
|
* file if it doesn't exist, and the vault table if it doesn't exist.
|
||||||
*
|
*
|
||||||
@@ -38,7 +51,8 @@ function getDatabaseConnection() {
|
|||||||
return $pdo;
|
return $pdo;
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Pulls and stores all vault transaction logs for a user from the Torn API.
|
/**
|
||||||
|
* Pulls and stores all vault transaction logs for a user from the Torn API.
|
||||||
*
|
*
|
||||||
* This function retrieves all transaction logs related to vault deposits and
|
* This function retrieves all transaction logs related to vault deposits and
|
||||||
* withdrawals for a specified user. It continues fetching logs until no more
|
* withdrawals for a specified user. It continues fetching logs until no more
|
||||||
@@ -48,12 +62,16 @@ function getDatabaseConnection() {
|
|||||||
* authenticate requests to the Torn API.
|
* authenticate requests to the Torn API.
|
||||||
*
|
*
|
||||||
* @param string $user The user whose transaction logs are to be retrieved and stored.
|
* @param string $user The user whose transaction logs are to be retrieved and stored.
|
||||||
|
*
|
||||||
|
* @throws ApiKeyMissingException If the user does not have an API key configured.
|
||||||
|
* @throws CurlErrorException If there is an error during the API call.
|
||||||
|
* @throws Exception If there is an error decoding the JSON response or if the response is invalid.
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
*/
|
*/
|
||||||
function firstRun($user) {
|
function firstRun($user) {
|
||||||
$apiKey = USER_KEYS[$user];
|
$apiKey = USER_KEYS[$user];
|
||||||
|
|
||||||
$pdo = getDatabaseConnection();
|
$pdo = getDatabaseConnection();
|
||||||
|
|
||||||
$to = time();
|
$to = time();
|
||||||
|
|
||||||
do {
|
do {
|
||||||
@@ -61,10 +79,12 @@ function firstRun($user) {
|
|||||||
$ch = curl_init($url);
|
$ch = curl_init($url);
|
||||||
|
|
||||||
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
|
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
|
||||||
curl_setopt($ch, CURLOPT_HTTPHEADER, [
|
curl_setopt(
|
||||||
|
$ch, CURLOPT_HTTPHEADER, [
|
||||||
'accept: application/json',
|
'accept: application/json',
|
||||||
"Authorization: ApiKey $apiKey"
|
"Authorization: ApiKey $apiKey"
|
||||||
]);
|
]
|
||||||
|
);
|
||||||
|
|
||||||
$response = curl_exec($ch);
|
$response = curl_exec($ch);
|
||||||
|
|
||||||
@@ -72,7 +92,9 @@ function firstRun($user) {
|
|||||||
|
|
||||||
$data = json_decode($response, true);
|
$data = json_decode($response, true);
|
||||||
|
|
||||||
if (empty($data['log'])) { break; }
|
if (empty($data['log'])) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
foreach ($data['log'] as $key => $entry) {
|
foreach ($data['log'] as $key => $entry) {
|
||||||
$description = $entry['title'];
|
$description = $entry['title'];
|
||||||
@@ -94,13 +116,16 @@ function firstRun($user) {
|
|||||||
} while (true);
|
} while (true);
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Retrieves the user's log entries from the Torn API
|
/**
|
||||||
|
* Retrieves the user's log entries from the Torn API
|
||||||
*
|
*
|
||||||
* @param string $user The user to retrieve the log for
|
* @param string $user The user to retrieve the log for
|
||||||
* @param boolean $debug Whether to output debug information (default: false)
|
* @param boolean $debug Whether to output debug information (default: false)
|
||||||
*
|
*
|
||||||
* @throws Exception If the user does not have an API key configured,
|
* @throws Exception If the user does not have an API key configured,
|
||||||
* if the API call fails, or if the log data is invalid
|
* if the API call fails, or if the log data is invalid
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
*/
|
*/
|
||||||
function getLog($user, $debug = false) {
|
function getLog($user, $debug = false) {
|
||||||
$pdo = getDatabaseConnection();
|
$pdo = getDatabaseConnection();
|
||||||
@@ -125,7 +150,8 @@ function getLog($user, $debug = false) {
|
|||||||
processLogEntries($responseData['log'], $user, $checkStmt, $insertStmt, $debug);
|
processLogEntries($responseData['log'], $user, $checkStmt, $insertStmt, $debug);
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Generate the current balance for a user or all users
|
/**
|
||||||
|
* Generate the current balance for a user or all users
|
||||||
*
|
*
|
||||||
* @param string $name (optional) The user to get the balance for. If not provided, all users' balances will be added.
|
* @param string $name (optional) The user to get the balance for. If not provided, all users' balances will be added.
|
||||||
*
|
*
|
||||||
@@ -137,7 +163,8 @@ function generateBalance($name=null) {
|
|||||||
return number_format($balance, 0); // Format the balance as an integer
|
return number_format($balance, 0); // Format the balance as an integer
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Calculate the available vault space for a user or all users.
|
/**
|
||||||
|
* Calculate the available vault space for a user or all users.
|
||||||
*
|
*
|
||||||
* This function calculates the remaining space in the vault based on the
|
* This function calculates the remaining space in the vault based on the
|
||||||
* transactions for a specific user or all users. If a user is specified,
|
* transactions for a specific user or all users. If a user is specified,
|
||||||
@@ -150,7 +177,6 @@ function generateBalance($name=null) {
|
|||||||
*
|
*
|
||||||
* @return string The available vault space as a formatted string.
|
* @return string The available vault space as a formatted string.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
function getSpace($name=null) {
|
function getSpace($name=null) {
|
||||||
$space = vaultLoop($name);
|
$space = vaultLoop($name);
|
||||||
|
|
||||||
@@ -163,7 +189,8 @@ function getSpace($name=null) {
|
|||||||
return number_format($space, 0); // Format the balance as an integer
|
return number_format($space, 0); // Format the balance as an integer
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Builds an HTML table of all transactions in the vault
|
/**
|
||||||
|
* Builds an HTML table of all transactions in the vault
|
||||||
*
|
*
|
||||||
* Loops over all records in the vault and builds a table of the user, timestamp,
|
* Loops over all records in the vault and builds a table of the user, timestamp,
|
||||||
* description and amount of each transaction. Amounts are formatted as integers.
|
* description and amount of each transaction. Amounts are formatted as integers.
|
||||||
|
|||||||
@@ -1,23 +1,99 @@
|
|||||||
<?php
|
<?php
|
||||||
|
/**
|
||||||
|
* Custom exceptions for API interactions.
|
||||||
|
*
|
||||||
|
* PHP version 8.1+
|
||||||
|
*
|
||||||
|
* @category Exception
|
||||||
|
* @package TornVaultTracker
|
||||||
|
* @author Keith Solomon <ksolomon@gmail.com>
|
||||||
|
* @license Unlicense https://unlicense.org/
|
||||||
|
* @link https://github.com/ksolomon/Torn-Vault-Tracker
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Exception thrown when API key is missing.
|
||||||
|
*
|
||||||
|
* @category Exception
|
||||||
|
* @package TornVaultTracker
|
||||||
|
* @author Keith Solomon <ksolomon@gmail.com>
|
||||||
|
* @license Unlicense https://unlicense.org/
|
||||||
|
* @link https://github.com/ksolomon/Torn-Vault-Tracker
|
||||||
|
*/
|
||||||
class ApiKeyMissingException extends Exception {
|
class ApiKeyMissingException extends Exception {
|
||||||
|
/**
|
||||||
|
* Constructor.
|
||||||
|
*
|
||||||
|
* @param string $message The exception message.
|
||||||
|
* @param int $code The exception code.
|
||||||
|
* @param Throwable $previous The previous throwable.
|
||||||
|
*/
|
||||||
public function __construct($message, $code = 0, Throwable $previous = null) {
|
public function __construct($message, $code = 0, Throwable $previous = null) {
|
||||||
parent::__construct($message, $code, $previous);
|
parent::__construct($message, $code, $previous);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Exception thrown on CURL errors.
|
||||||
|
*
|
||||||
|
* @category Exception
|
||||||
|
* @package TornVaultTracker
|
||||||
|
* @author Keith Solomon <ksolomon@gmail.com>
|
||||||
|
* @license Unlicense https://unlicense.org/
|
||||||
|
* @link https://github.com/ksolomon/Torn-Vault-Tracker
|
||||||
|
*/
|
||||||
class CurlErrorException extends Exception {
|
class CurlErrorException extends Exception {
|
||||||
|
/**
|
||||||
|
* Constructor.
|
||||||
|
*
|
||||||
|
* @param string $message The exception message.
|
||||||
|
* @param int $code The exception code.
|
||||||
|
* @param Throwable $previous The previous throwable.
|
||||||
|
*/
|
||||||
public function __construct($message, $code = 0, Throwable $previous = null) {
|
public function __construct($message, $code = 0, Throwable $previous = null) {
|
||||||
parent::__construct($message, $code, $previous);
|
parent::__construct($message, $code, $previous);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Exception thrown on JSON data errors.
|
||||||
|
*
|
||||||
|
* @category Exception
|
||||||
|
* @package TornVaultTracker
|
||||||
|
* @author Keith Solomon <ksolomon@gmail.com>
|
||||||
|
* @license Unlicense https://unlicense.org/
|
||||||
|
* @link https://github.com/ksolomon/Torn-Vault-Tracker
|
||||||
|
*/
|
||||||
class JsonDataException extends Exception {
|
class JsonDataException extends Exception {
|
||||||
|
/**
|
||||||
|
* Constructor.
|
||||||
|
*
|
||||||
|
* @param string $message The exception message.
|
||||||
|
* @param int $code The exception code.
|
||||||
|
* @param Throwable $previous The previous throwable.
|
||||||
|
*/
|
||||||
public function __construct($message, $code = 0, Throwable $previous = null) {
|
public function __construct($message, $code = 0, Throwable $previous = null) {
|
||||||
parent::__construct($message, $code, $previous);
|
parent::__construct($message, $code, $previous);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Exception thrown on API validation errors.
|
||||||
|
*
|
||||||
|
* @category Exception
|
||||||
|
* @package TornVaultTracker
|
||||||
|
* @author Keith Solomon <ksolomon@gmail.com>
|
||||||
|
* @license Unlicense https://unlicense.org/
|
||||||
|
* @link https://github.com/ksolomon/Torn-Vault-Tracker
|
||||||
|
*/
|
||||||
class ApiValidationException extends Exception {
|
class ApiValidationException extends Exception {
|
||||||
|
/**
|
||||||
|
* Constructor.
|
||||||
|
*
|
||||||
|
* @param string $message The exception message.
|
||||||
|
* @param int $code The exception code.
|
||||||
|
* @param Throwable $previous The previous throwable.
|
||||||
|
*/
|
||||||
public function __construct($message, $code = 0, Throwable $previous = null) {
|
public function __construct($message, $code = 0, Throwable $previous = null) {
|
||||||
parent::__construct($message, $code, $previous);
|
parent::__construct($message, $code, $previous);
|
||||||
}
|
}
|
||||||
|
|||||||
+55
-16
@@ -1,5 +1,21 @@
|
|||||||
<?php
|
<?php
|
||||||
/** Checks if the database is new and empty.
|
/**
|
||||||
|
* Utility functions for the Torn Vault Tracker application.
|
||||||
|
*
|
||||||
|
* This file contains helper functions for database operations, API calls,
|
||||||
|
* and vault record management.
|
||||||
|
*
|
||||||
|
* PHP version 8.1+
|
||||||
|
*
|
||||||
|
* @category Utility
|
||||||
|
* @package TornVaultTracker
|
||||||
|
* @author Keith Solomon <ksolomon@gmail.com>
|
||||||
|
* @license Unlicense https://unlicense.org/
|
||||||
|
* @link https://github.com/ksolomon/Torn-Vault-Tracker
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Checks if the database is new and empty.
|
||||||
*
|
*
|
||||||
* This function checks if the 'vault' table in the database has any entries.
|
* This function checks if the 'vault' table in the database has any entries.
|
||||||
* If it does not, it returns true, indicating that the database is new and
|
* If it does not, it returns true, indicating that the database is new and
|
||||||
@@ -14,10 +30,13 @@ function dbNew() {
|
|||||||
return $stmt->fetchColumn() == 0;
|
return $stmt->fetchColumn() == 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Ensures that a user has an API key configured.
|
/**
|
||||||
|
* Ensures that a user has an API key configured.
|
||||||
*
|
*
|
||||||
* @param string $user The user to check the API key for
|
* @param string $user The user to check the API key for
|
||||||
*
|
*
|
||||||
|
* @return void
|
||||||
|
*
|
||||||
* @throws Exception If the user does not have an API key configured
|
* @throws Exception If the user does not have an API key configured
|
||||||
*/
|
*/
|
||||||
function ensureUserHasApiKey($user) {
|
function ensureUserHasApiKey($user) {
|
||||||
@@ -26,7 +45,8 @@ function ensureUserHasApiKey($user) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Executes a GET request to the given API endpoint and returns the JSON response as an associative array.
|
/**
|
||||||
|
* Executes a GET request to the given API endpoint and returns the JSON response as an associative array.
|
||||||
*
|
*
|
||||||
* @param string $apiEndpoint The URL of the API endpoint to call
|
* @param string $apiEndpoint The URL of the API endpoint to call
|
||||||
*
|
*
|
||||||
@@ -58,10 +78,13 @@ function executeApiCall($apiEndpoint) {
|
|||||||
return $responseData;
|
return $responseData;
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Validates the API response data for the presence of a log array.
|
/**
|
||||||
|
* Validates the API response data for the presence of a log array.
|
||||||
*
|
*
|
||||||
* @param array $responseData The API response data to validate.
|
* @param array $responseData The API response data to validate.
|
||||||
*
|
*
|
||||||
|
* @return void
|
||||||
|
*
|
||||||
* @throws Exception If the log data is missing or not an array.
|
* @throws Exception If the log data is missing or not an array.
|
||||||
*/
|
*/
|
||||||
function validateApiResponse($responseData) {
|
function validateApiResponse($responseData) {
|
||||||
@@ -70,7 +93,8 @@ function validateApiResponse($responseData) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Prepare a PDO statement for checking if a given vault transaction already exists in the database.
|
/**
|
||||||
|
* Prepare a PDO statement for checking if a given vault transaction already exists in the database.
|
||||||
*
|
*
|
||||||
* @param PDO $pdo The PDO instance to prepare the statement with
|
* @param PDO $pdo The PDO instance to prepare the statement with
|
||||||
*
|
*
|
||||||
@@ -81,7 +105,8 @@ function prepareCheckStatement($pdo) {
|
|||||||
return $pdo->prepare($checkQuery);
|
return $pdo->prepare($checkQuery);
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Prepare a PDO statement for inserting a new vault transaction into the database.
|
/**
|
||||||
|
* Prepare a PDO statement for inserting a new vault transaction into the database.
|
||||||
*
|
*
|
||||||
* @param PDO $pdo The PDO instance to prepare the statement with
|
* @param PDO $pdo The PDO instance to prepare the statement with
|
||||||
*
|
*
|
||||||
@@ -92,7 +117,8 @@ function prepareInsertStatement($pdo) {
|
|||||||
return $pdo->prepare($insertQuery);
|
return $pdo->prepare($insertQuery);
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Process an array of log entries retrieved from the Torn API.
|
/**
|
||||||
|
* Process an array of log entries retrieved from the Torn API.
|
||||||
*
|
*
|
||||||
* Goes through each log entry and checks if it's a vault deposit or withdrawal.
|
* Goes through each log entry and checks if it's a vault deposit or withdrawal.
|
||||||
* If it is, it checks if the entry already exists in the database. If it
|
* If it is, it checks if the entry already exists in the database. If it
|
||||||
@@ -105,6 +131,8 @@ function prepareInsertStatement($pdo) {
|
|||||||
* @param PDOStatement $insertStmt A prepared statement to insert a new entry
|
* @param PDOStatement $insertStmt A prepared statement to insert a new entry
|
||||||
* into the database
|
* into the database
|
||||||
* @param boolean $debug Whether to output debug information (default: false)
|
* @param boolean $debug Whether to output debug information (default: false)
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
*/
|
*/
|
||||||
function processLogEntries($logEntries, $user, $checkStmt, $insertStmt, $debug) {
|
function processLogEntries($logEntries, $user, $checkStmt, $insertStmt, $debug) {
|
||||||
foreach ($logEntries as $key =>$entry) {
|
foreach ($logEntries as $key =>$entry) {
|
||||||
@@ -122,25 +150,30 @@ function processLogEntries($logEntries, $user, $checkStmt, $insertStmt, $debug)
|
|||||||
file_put_contents(__DIR__ . '/debug.log', $logMessage, FILE_APPEND);
|
file_put_contents(__DIR__ . '/debug.log', $logMessage, FILE_APPEND);
|
||||||
}
|
}
|
||||||
|
|
||||||
$checkStmt->execute([
|
$checkStmt->execute(
|
||||||
|
[
|
||||||
':user' => $user,
|
':user' => $user,
|
||||||
':timestamp' => $timestamp,
|
':timestamp' => $timestamp,
|
||||||
':amount' => $amount
|
':amount' => $amount
|
||||||
]);
|
]
|
||||||
|
);
|
||||||
|
|
||||||
if ($checkStmt->fetchColumn() == 0) {
|
if ($checkStmt->fetchColumn() == 0) {
|
||||||
$insertStmt->execute([
|
$insertStmt->execute(
|
||||||
|
[
|
||||||
':id' => $key,
|
':id' => $key,
|
||||||
':user' => $user,
|
':user' => $user,
|
||||||
':timestamp' => $timestamp,
|
':timestamp' => $timestamp,
|
||||||
':description' => $description,
|
':description' => $description,
|
||||||
':amount' => $amount
|
':amount' => $amount
|
||||||
]);
|
]
|
||||||
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Fetch vault records from the database
|
/**
|
||||||
|
* Fetch vault records from the database
|
||||||
* If a user is provided, only that user's records
|
* If a user is provided, only that user's records
|
||||||
* are returned. Otherwise, all records are returned.
|
* are returned. Otherwise, all records are returned.
|
||||||
*
|
*
|
||||||
@@ -171,7 +204,8 @@ function fetchVaultRecords($user = null) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Iterate over all vault records for the given user (or all users if no user is given),
|
/**
|
||||||
|
* Iterate over all vault records for the given user (or all users if no user is given),
|
||||||
*
|
*
|
||||||
* @param string|null $name (optional) The user to loop over records for.
|
* @param string|null $name (optional) The user to loop over records for.
|
||||||
* If not provided, all users' records will be looped over.
|
* If not provided, all users' records will be looped over.
|
||||||
@@ -182,12 +216,15 @@ function vaultLoop ($name=null) {
|
|||||||
$vault = fetchVaultRecords($name);
|
$vault = fetchVaultRecords($name);
|
||||||
$balance = 0;
|
$balance = 0;
|
||||||
|
|
||||||
foreach ($vault as $entry) { $balance += $entry['amount']; }
|
foreach ($vault as $entry) {
|
||||||
|
$balance += $entry['amount'];
|
||||||
|
}
|
||||||
|
|
||||||
return $balance;
|
return $balance;
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Returns a string indicating the sign of a number, with a dollar symbol.
|
/**
|
||||||
|
* Returns a string indicating the sign of a number, with a dollar symbol.
|
||||||
*
|
*
|
||||||
* @param int|float $number The number to check.
|
* @param int|float $number The number to check.
|
||||||
*
|
*
|
||||||
@@ -195,7 +232,9 @@ function vaultLoop ($name=null) {
|
|||||||
* number is negative.
|
* number is negative.
|
||||||
*/
|
*/
|
||||||
function getSign($number) {
|
function getSign($number) {
|
||||||
if (substr($number, 0, 1) == '-') { return '-$'; }
|
if (substr($number, 0, 1) == '-') {
|
||||||
|
return '-$';
|
||||||
|
}
|
||||||
|
|
||||||
return '$';
|
return '$';
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,17 @@
|
|||||||
<?php
|
<?php
|
||||||
|
/**
|
||||||
|
* Main entry point for the Torn Vault Tracker application.
|
||||||
|
*
|
||||||
|
* PHP version 8.1+
|
||||||
|
*
|
||||||
|
* @category Main
|
||||||
|
* @package TornVaultTracker
|
||||||
|
* @author Keith Solomon <ksolmon@gmail.com>
|
||||||
|
* @license Unlicense https://unlicense.org/
|
||||||
|
* @link https://github.com/ksolmon/torn-vault-tracker
|
||||||
|
*/
|
||||||
require_once __DIR__ . '/config.php';
|
require_once __DIR__ . '/config.php';
|
||||||
include_once __DIR__ . '/functions.php';
|
require_once __DIR__ . '/functions.php';
|
||||||
|
|
||||||
if (dbNew()) {
|
if (dbNew()) {
|
||||||
foreach (USER_KEYS as $key => $value) {
|
foreach (USER_KEYS as $key => $value) {
|
||||||
|
|||||||
@@ -0,0 +1,29 @@
|
|||||||
|
<?xml version="1.0"?>
|
||||||
|
<ruleset name="Coding Style Checks">
|
||||||
|
<description>Coding Style Checks</description>
|
||||||
|
<ini name="error_reporting" value="E_ALL & ~E_DEPRECATED" />
|
||||||
|
|
||||||
|
<arg value="sp"/>
|
||||||
|
<arg name="colors"/>
|
||||||
|
<arg name="extensions" value="php,html,css"/>
|
||||||
|
<arg name="parallel" value="2048"/>
|
||||||
|
|
||||||
|
<exclude-pattern>vendor/</exclude-pattern>
|
||||||
|
<exclude-pattern>node_modules/</exclude-pattern>
|
||||||
|
|
||||||
|
<rule ref="PEAR">
|
||||||
|
<exclude name="PEAR.Classes.ClassDeclaration"/>
|
||||||
|
<exclude name="PEAR.Functions.FunctionDeclaration"/>
|
||||||
|
<exclude name="Generic.Files.LineLength.TooLong"/>
|
||||||
|
<exclude name="Generic.WhiteSpace.DisallowSpaceIndent.SpacesUsed"/>
|
||||||
|
<exclude name="Generic.Functions.CallTimePassByReference"/>
|
||||||
|
<exclude name="Squiz.Commenting.FileComment.MissingPackageTag"/>
|
||||||
|
<exclude name="Squiz.Commenting.FileComment.Missing"/>
|
||||||
|
<exclude name="Squiz.Commenting.FileComment.WrongStyle"/>
|
||||||
|
<exclude name="Squiz.Commenting.InlineComment.InvalidEndChar"/>
|
||||||
|
</rule>
|
||||||
|
|
||||||
|
<rule ref="Internal.NoCodeFound">
|
||||||
|
<severity>0</severity>
|
||||||
|
</rule>
|
||||||
|
</ruleset>
|
||||||
Reference in New Issue
Block a user