| Current Path : /home/happyrenas/fun/public/api/ |
Linux webd005.cluster105.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 |
| Current File : /home/happyrenas/fun/public/api/tarifs.php |
<?php
/**
* GET /api/tarifs.php
* -> {ok:true, url:"..."}
*/
require_once __DIR__ . '/_bootstrap.php';
rate_limit_or_429('get', $config);
$db = $config['sheets']['db'];
$values = sheets_get_all($db['spreadsheet_id'], $db['image_sheet'], $config);
$t = table_from_values($values);
$row = find_row_by_col($t['rows'], 'id_image', '3');
if (!$row) json_out(['ok'=>true, 'url'=>'']);
$url = (string)($row['png'] ?? '');
json_out(['ok'=>true, 'url'=>$url]);