]> git.mxchange.org Git - friendica.git/blob - src/Model/Verb.php
Compare with lowered tags
[friendica.git] / src / Model / Verb.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2024, the Friendica project
4  *
5  * @license GNU AGPL version 3 or any later version
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Affero General Public License as
9  * published by the Free Software Foundation, either version 3 of the
10  * License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Affero General Public License for more details.
16  *
17  * You should have received a copy of the GNU Affero General Public License
18  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
19  *
20  */
21
22 namespace Friendica\Model;
23
24 use Friendica\Database\Database;
25 use Friendica\Database\DBA;
26
27 class Verb
28 {
29         static $verbs = [];
30
31         /**
32          * Insert a verb record and return its id
33          *
34          * @param string $verb
35          *
36          * @return integer verb id
37          * @throws \Exception
38          */
39         public static function getID(string $verb): int
40         {
41                 if (empty($verb)) {
42                         return 0;
43                 }
44
45                 $id = array_search($verb, self::$verbs);
46                 if ($id !== false) {
47                         return $id;
48                 }
49
50                 $verb_record = DBA::selectFirst('verb', ['id'], ['name' => $verb]);
51                 if (DBA::isResult($verb_record)) {
52                         self::$verbs[$verb_record['id']] = $verb;
53                         return $verb_record['id'];
54                 }
55
56                 DBA::insert('verb', ['name' => $verb], Database::INSERT_IGNORE);
57
58                 $id = DBA::lastInsertId();
59                 self::$verbs[$id] = $verb;
60                 return $id;
61
62         }
63
64         /**
65          * Return verb name for the given ID
66          *
67          * @param integer $id
68          * @return string verb
69          */
70         public static function getByID(int $id): string
71         {
72                 if (empty($id)) {
73                         return '';
74                 }
75
76                 if (!empty(self::$verbs[$id])) {
77                         return self::$verbs[$id];
78                 }
79
80                 $verb_record = DBA::selectFirst('verb', ['name'], ['id' => $id]);
81                 if (!DBA::isResult($verb_record)) {
82                         return '';
83                 }
84
85                 self::$verbs[$id] = $verb_record['name'];
86
87                 return $verb_record['name'];
88         }
89 }