| Server IP : 139.59.63.204 / Your IP : 216.73.217.62 Web Server : Apache/2.4.58 (Ubuntu) System : Linux ubuntu-s-1vcpu-1gb-blr1-01 6.8.0-110-generic #110-Ubuntu SMP PREEMPT_DYNAMIC Thu Mar 19 15:09:20 UTC 2026 x86_64 User : root ( 0) PHP Version : 8.3.6 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/abyogasms.com/vendor/spatie/shiki-php/src/ |
Upload File : |
<?php
namespace Spatie\ShikiPhp;
use Symfony\Component\Process\Exception\ProcessFailedException;
use Symfony\Component\Process\ExecutableFinder;
use Symfony\Component\Process\Process;
class Shiki
{
/**
* @var string|array<string, string> Can be a single theme or an array with a light and a dark theme.
*/
protected mixed $defaultTheme;
private static ?string $customWorkingDirPath = null;
public static function setCustomWorkingDirPath(?string $path)
{
static::$customWorkingDirPath = $path;
}
/**
* @param string|array<string, string>|null $theme Can be a single theme or an array with a light and a dark theme.
*/
public static function highlight(
string $code,
?string $language = null,
mixed $theme = null,
?array $highlightLines = null,
?array $addLines = null,
?array $deleteLines = null,
?array $focusLines = null
): string {
$language = $language ?? 'php';
$theme = $theme ?? 'nord';
return (new static())->highlightCode($code, $language, $theme, [
'highlightLines' => $highlightLines ?? [],
'addLines' => $addLines ?? [],
'deleteLines' => $deleteLines ?? [],
'focusLines' => $focusLines ?? [],
]);
}
public function getAvailableLanguages(): array
{
$shikiResult = $this->callShiki('languages');
$languages = json_decode($shikiResult, true);
sort($languages);
return $languages;
}
/**
* @param string|array<string, string> $defaultTheme Can be a single theme or an array with a light and a dark theme.
*/
public function __construct(mixed $defaultTheme = 'nord')
{
$this->defaultTheme = $defaultTheme;
}
public function getAvailableThemes(): array
{
$shikiResult = $this->callShiki('themes');
return json_decode($shikiResult, true);
}
public function languageIsAvailable(string $language): bool
{
$shikiResult = $this->callShiki('aliases');
$aliases = json_decode($shikiResult, true);
return in_array($language, $aliases);
}
public function themeIsAvailable(string $theme): bool
{
return in_array($theme, $this->getAvailableThemes());
}
public function highlightCode(string $code, string $language, mixed $theme = null, ?array $options = []): string
{
$theme = $theme ?? $this->defaultTheme;
return $this->callShiki($code, $language, $theme, $options);
}
public function getWorkingDirPath(): string
{
if (static::$customWorkingDirPath !== null && ($path = realpath(static::$customWorkingDirPath)) !== false) {
return $path;
}
return realpath(dirname(__DIR__) . '/bin');
}
protected function callShiki(...$arguments): string
{
$home = getenv("HOME");
$command = [
(new ExecutableFinder())->find('node', 'node', [
'/usr/local/bin',
'/opt/homebrew/bin',
$home . '/n/bin', // support https://github.com/tj/n
]),
'shiki.js',
];
$process = new Process(
$command,
$this->getWorkingDirPath(),
null,
json_encode(array_values($arguments)),
);
$process->run();
if (! $process->isSuccessful()) {
throw new ProcessFailedException($process);
}
return $process->getOutput();
}
}