2020-07-10 12:20:25 +00:00
|
|
|
<?php
|
2020-08-04 11:25:22 +00:00
|
|
|
|
2020-07-10 12:20:25 +00:00
|
|
|
/**
|
|
|
|
* @copyright 2020 Podlibre
|
|
|
|
* @license https://www.gnu.org/licenses/agpl-3.0.en.html AGPL3
|
|
|
|
* @link https://castopod.org/
|
|
|
|
*/
|
|
|
|
|
2021-04-14 15:58:40 +00:00
|
|
|
namespace Analytics\Controllers;
|
2020-08-04 11:25:22 +00:00
|
|
|
|
2021-05-06 14:00:48 +00:00
|
|
|
use CodeIgniter\HTTP\ResponseInterface;
|
2020-06-12 20:41:09 +00:00
|
|
|
use CodeIgniter\Controller;
|
|
|
|
|
2021-04-14 15:58:40 +00:00
|
|
|
class UnknownUserAgentsController extends Controller
|
2020-06-12 20:41:09 +00:00
|
|
|
{
|
2021-05-06 14:00:48 +00:00
|
|
|
public function index($lastKnownId = 0): ResponseInterface
|
2020-06-12 20:41:09 +00:00
|
|
|
{
|
2021-04-14 15:58:40 +00:00
|
|
|
$model = model('UnknownUserAgentsModel');
|
2020-06-12 20:41:09 +00:00
|
|
|
|
2020-08-04 11:25:22 +00:00
|
|
|
return $this->response->setJSON($model->getUserAgents($lastKnownId));
|
2020-06-12 20:41:09 +00:00
|
|
|
}
|
|
|
|
}
|