Fix lang on Top
This commit is contained in:
parent
a3ac95f948
commit
b09e8a5ef2
|
@ -11,15 +11,18 @@ use OCP\AppFramework\Http;
|
|||
use OCP\AppFramework\Http\JSONResponse;
|
||||
use OCP\Http\Client\IClientService;
|
||||
use OCP\IRequest;
|
||||
use OCP\IUserSession;
|
||||
use OCP\L10N\IFactory;
|
||||
|
||||
class TopController extends Controller
|
||||
{
|
||||
private IClientService $clientService;
|
||||
|
||||
public function __construct(IRequest $request, IClientService $clientService) {
|
||||
public function __construct(
|
||||
IRequest $request,
|
||||
private IClientService $clientService,
|
||||
private IFactory $l10nFactory,
|
||||
private IUserSession $userSession
|
||||
) {
|
||||
parent::__construct(Application::APP_ID, $request);
|
||||
|
||||
$this->clientService = $clientService;
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -32,8 +35,13 @@ class TopController extends Controller
|
|||
}
|
||||
|
||||
try {
|
||||
$lang = $this->l10nFactory->getUserLanguage($this->userSession->getUser());
|
||||
$lang = explode('_', $lang);
|
||||
$lang = count($lang) > 1 ? $lang[1] : $lang[0];
|
||||
$lang = $lang === 'en' ? 'us' : $lang;
|
||||
|
||||
$client = $this->clientService->newClient();
|
||||
$response = $client->get("https://rss.applemarketingtools.com/api/v2/fr/podcasts/top/{$limit}/podcasts.json");
|
||||
$response = $client->get("https://rss.applemarketingtools.com/api/v2/{$lang}/podcasts/top/{$limit}/podcasts.json");
|
||||
/** @var array $json */
|
||||
$json = json_decode((string) $response->getBody(), flags: JSON_THROW_ON_ERROR);
|
||||
return new JSONResponse($json, $response->getStatusCode());
|
||||
|
|
Loading…
Reference in New Issue