aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module/Pubsites.php
blob: cbaa66042e5b8ad987f71728d423407a814f4021 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<?php
namespace Zotlabs\Module;

use Zotlabs\Lib\Config;
use Zotlabs\Lib\Libzotdir;

class Pubsites extends \Zotlabs\Web\Controller {

	function get() {
		$dirmode = intval(Config::Get('system','directory_mode'));

		$url = '';

		if(($dirmode == DIRECTORY_MODE_PRIMARY) || ($dirmode == DIRECTORY_MODE_STANDALONE)) {
			$url = z_root() . '/dirsearch';
		}
		if(! $url) {
			$directory = Libzotdir::find_upstream_directory($dirmode);
			$url = $directory['url'] . '/dirsearch';
		}
		$url .= '/sites';

		$rating_enabled = Config::Get('system','rating_enabled');

		$o = '<div class="generic-content-wrapper">';

		$o .= '<div class="section-title-wrapper"><h2>' . t('Public Hubs') . '</h2></div>';

		$o .= '<div class="section-content-tools-wrapper"><div class="descriptive-text">' .
			t('The listed hubs allow public registration for the $Projectname network. All hubs in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some hubs may require subscription or provide tiered service plans. The hub itself <strong>may</strong> provide additional details.') . '</div>' . EOL;

		$ret = z_fetch_url($url);
		if($ret['success']) {
			$j = json_decode($ret['body'],true);
			if($j) {
				$o .= '<table class="table table-striped table-hover"><tr><td>' . t('Hub URL') . '</td><td>' . t('Access Type') . '</td><td>' . t('Registration Policy') . '</td><!--td>' . t('Stats') . '</td--><td>' . t('Software') . '</td>';
				if($rating_enabled)
					$o .= '<td colspan="2">' . t('Ratings') . '</td>';
				$o .= '</tr>';
				if($j['sites']) {
					foreach($j['sites'] as $jj) {
						$projectname = explode(' ',$jj['project']);
						if(! \Zotlabs\Lib\System::compatible_project($projectname[0]))
							continue;
						if(strpos($jj['version'],' ')) {
							$x = explode(' ', $jj['version']);
							if($x[1])
								$jj['version'] = $x[1];
						}
						$m = parse_url($jj['url']);
						$host = strtolower(substr($jj['url'],strpos($jj['url'],'://')+3));
						$rate_links = ((local_channel()) ? '<td><a href="rate?f=&target=' . $host . '" class="btn-btn-default"><i class="fa fa-check-square-o"></i> ' . t('Rate') . '</a></td>' : '');
						$location = '';
						if(!empty($jj['location'])) {
							$location = '<p title="' . t('Location') . '" style="margin: 5px 5px 0 0; text-align: right"><i class="fa fa-globe"></i> ' . $jj['location'] . '</p>';
							}
						else {
							$location = '<br />&nbsp;';
							}
						$urltext = str_replace(array('https://'), '', $jj['url']);
						$o .= '<tr><td><a href="'. (($jj['sellpage']) ? $jj['sellpage'] : $jj['url'] . '/register' ) . '" ><i class="fa fa-link"></i> ' . $urltext . '</a>' . $location . '</td><td>' . $jj['access'] . '</td><td>' . $jj['register'] . '</td><!--td>' . '<a target="stats" href="https://hubchart-tarine.rhcloud.com/hub.jsp?hubFqdn=' . $m['host'] . '"><i class="fa fa-area-chart"></i></a></td--><td>' . ucwords($jj['project']) . (($jj['version']) ? ' ' . $jj['version'] : '') . '</td>';
						if($rating_enabled)
							$o .= '<td><a href="ratings/' . $host . '" class="btn-btn-default"><i class="fa fa-eye"></i> ' . t('View') . '</a></td>' . $rate_links ;
						$o .=  '</tr>';
					}
				}

				$o .= '</table>';

				$o .= '</div></div>';

			}
		}
		return $o;
	}

}