From b6ae2804463d89385613b6d463cab024a3b11b08 Mon Sep 17 00:00:00 2001 From: wn_ Date: Wed, 17 Mar 2021 13:48:27 +0000 Subject: Switch 'Handler_Public->getProfiles' to ORM --- classes/handler/public.php | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'classes/handler/public.php') diff --git a/classes/handler/public.php b/classes/handler/public.php index 6a67827db..75b6d5f06 100755 --- a/classes/handler/public.php +++ b/classes/handler/public.php @@ -266,19 +266,19 @@ class Handler_Public extends Handler { $rv = []; if ($login) { - $sth = $this->pdo->prepare("SELECT ttrss_settings_profiles.* FROM ttrss_settings_profiles,ttrss_users - WHERE ttrss_users.id = ttrss_settings_profiles.owner_uid AND LOWER(login) = LOWER(?) ORDER BY title"); - $sth->execute([$login]); + $profiles = ORM::for_table('ttrss_settings_profiles') + ->table_alias('p') + ->join('ttrss_users', ['p.owner_uid', '=', 'u.id'], 'u') + ->where_raw('LOWER(u.login) = LOWER(?)', [$login]) + ->order_by_asc('title') + ->find_many(); $rv = [ [ "value" => 0, "label" => __("Default profile") ] ]; - while ($line = $sth->fetch()) { - $id = $line["id"]; - $title = $line["title"]; - - array_push($rv, [ "label" => $title, "value" => $id ]); + foreach ($profiles as $profile) { + array_push($rv, [ "label" => $profile->title, "value" => $profile->id ]); } - } + } print json_encode($rv); } -- cgit v1.2.3