]> git.mxchange.org Git - friendica.git/blob - src/Model/Host.php
Merge remote-tracking branch 'upstream/develop' into more-q
[friendica.git] / src / Model / Host.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2021, 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\Core\Logger;
25 use Friendica\Database\DBA;
26
27 class Host
28 {
29         /**
30          * Get the id for a given hostname
31          * When empty, the current hostname is used
32          *
33          * @param string $hostname
34          *
35          * @return integer host name id
36          * @throws \Exception
37          */
38         public static function getId(string $hostname = '')
39         {
40                 if (empty($hostname)) {
41                         $hostname = php_uname('n');
42                 }
43
44                 $hostname = strtolower($hostname);
45
46                 $host = DBA::selectFirst('host', ['id'], ['name' => $hostname]);
47                 if (!empty($host['id'])) {
48                         return $host['id'];
49                 }
50
51                 DBA::replace('host', ['name' => $hostname]);
52
53                 $host = DBA::selectFirst('host', ['id'], ['name' => $hostname]);
54                 if (empty($host['id'])) {
55                         Logger::warning('Host name could not be inserted', ['name' => $hostname]);
56                         return 0;
57                 }
58
59                 return $host['id'];
60         }
61
62         /**
63          * Get the hostname for a given id
64          *
65          * @param int $id
66          *
67          * @return string host name
68          * @throws \Exception
69          */
70         public static function getName(int $id)
71         {
72                 $host = DBA::selectFirst('host', ['name'], ['id' => $id]);
73                 if (!empty($host['name'])) {
74                         return $host['name'];
75                 }
76
77                 return '';
78         }
79 }