3911012c65
Broad sweep across the whole codebase:
- Blade views (39 files, 315 wraps): tag-text and title/placeholder/alt
attributes wrapped with {{ __() }}. Excludes scripts, styles, @php,
@verbatim, {{ }}, {!! !!}, comments to avoid touching interpolations.
- PHP (54 files, 179 wraps): array 'key' => 'RO value' patterns and
list items with diacritics wrapped with __(). Reverted __() inside
const arrays (PHP disallows non-constant expressions).
- Added 269 new keys to lang/{ru,en}.json (identity fallback for
unknowns → 161 human RU + 163 EN translations added for the most
common enums, stages, roles, statuses, payment methods, vehicle
categories, warehouse, portal, form actions.
Missing translations fall back to RO so the UI never breaks. All 306
tests pass; view cache compiles cleanly.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
104 lines
3.5 KiB
PHP
104 lines
3.5 KiB
PHP
<?php
|
|
|
|
namespace App\Services\Notifications;
|
|
|
|
use App\Models\Central\Company;
|
|
use Illuminate\Support\Facades\Http;
|
|
use Illuminate\Support\Facades\Log;
|
|
|
|
/**
|
|
* Thin client over Bot API. Tenant-aware: bot token comes from
|
|
* companies.settings.telegram.bot_token. Webhook secret used to verify
|
|
* incoming updates (Telegram sends it back as X-Telegram-Bot-Api-Secret-Token).
|
|
*/
|
|
class TelegramService
|
|
{
|
|
private const API = 'https://api.telegram.org/bot';
|
|
|
|
public function tokenFor(Company $company): ?string
|
|
{
|
|
return data_get($company->settings, 'telegram.bot_token');
|
|
}
|
|
|
|
public function webhookSecretFor(Company $company): ?string
|
|
{
|
|
return data_get($company->settings, 'telegram.webhook_secret');
|
|
}
|
|
|
|
public function webhookUrlFor(Company $company): string
|
|
{
|
|
$central = config('app.central_domain') ?: 'service.mir.md';
|
|
// We expose the webhook on the central domain so Telegram does not
|
|
// need to know about subdomain wildcards. Slug routes to tenant.
|
|
return "https://{$central}/telegram/webhook/{$company->slug}";
|
|
}
|
|
|
|
public function sendMessage(Company $company, string $chatId, string $text, array $options = []): bool
|
|
{
|
|
$token = $this->tokenFor($company);
|
|
if (! $token || ! $chatId) return false;
|
|
|
|
try {
|
|
$resp = Http::asJson()
|
|
->timeout(10)
|
|
->post(self::API . $token . '/sendMessage', array_merge([
|
|
'chat_id' => $chatId,
|
|
'text' => $text,
|
|
'parse_mode' => 'HTML',
|
|
'disable_web_page_preview' => true,
|
|
], $options));
|
|
if (! $resp->ok()) {
|
|
Log::warning('telegram.send failed', [
|
|
'tenant' => $company->slug,
|
|
'status' => $resp->status(),
|
|
'body' => $resp->body(),
|
|
]);
|
|
return false;
|
|
}
|
|
return true;
|
|
} catch (\Throwable $e) {
|
|
Log::warning('telegram.send exception', ['err' => $e->getMessage()]);
|
|
return false;
|
|
}
|
|
}
|
|
|
|
public function setWebhook(Company $company): array
|
|
{
|
|
$token = $this->tokenFor($company);
|
|
if (! $token) return ['ok' => false, 'error' => __('Lipsește bot token în setări.')];
|
|
|
|
$secret = $this->webhookSecretFor($company);
|
|
if (! $secret) {
|
|
$secret = \Illuminate\Support\Str::random(32);
|
|
$company->update([
|
|
'settings' => array_replace_recursive((array) $company->settings, [
|
|
'telegram' => ['webhook_secret' => $secret],
|
|
]),
|
|
]);
|
|
}
|
|
|
|
try {
|
|
$resp = Http::asJson()->post(self::API . $token . '/setWebhook', [
|
|
'url' => $this->webhookUrlFor($company),
|
|
'secret_token' => $secret,
|
|
'allowed_updates' => ['message', 'callback_query'],
|
|
]);
|
|
return ['ok' => $resp->ok(), 'response' => $resp->json()];
|
|
} catch (\Throwable $e) {
|
|
return ['ok' => false, 'error' => $e->getMessage()];
|
|
}
|
|
}
|
|
|
|
public function getMe(Company $company): array
|
|
{
|
|
$token = $this->tokenFor($company);
|
|
if (! $token) return ['ok' => false, 'error' => 'no_token'];
|
|
try {
|
|
$resp = Http::timeout(10)->get(self::API . $token . '/getMe');
|
|
return ['ok' => $resp->ok(), 'response' => $resp->json()];
|
|
} catch (\Throwable $e) {
|
|
return ['ok' => false, 'error' => $e->getMessage()];
|
|
}
|
|
}
|
|
}
|