aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module/Ffsapi.php
blob: f3ade73c2e00d7b611ebca05e4c985e75787e74b (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
<?php
namespace Zotlabs\Module;



class Ffsapi extends \Zotlabs\Web\Controller {

	function get() {
	
		$baseurl = z_root();
		$name = get_config('system','sitename');
		$description = t('Share content from Firefox to $Projectname');
		$author = 'Mike Macgirvin';
		$homepage = 'http://hubzilla.org';
		$activate = t('Activate the Firefox $Projectname provider');
	
	$s = <<< EOT
	
	<script>
	
	var baseurl = '$baseurl';
	
	var data = {
	  "origin": baseurl,
	  // currently required
	  "name": '$name',
	  "iconURL": baseurl+"/images/hz-16.png",
	  "icon32URL": baseurl+"/images/hz-32.png",
	  "icon64URL": baseurl+"/images/hz-64.png",
	
	  // at least one of these must be defined
	  // "workerURL": baseurl+"/worker.js",
	  // "sidebarURL": baseurl+"/sidebar.htm",
	  "shareURL": baseurl+"/rpost?f=&url=%{url}",
	
	  // status buttons are scheduled for Firefox 26 or 27
	  //"statusURL": baseurl+"/statusPanel.html",
	
	  // social bookmarks are available in Firefox 26
	  "markURL": baseurl+"/rbmark?f=&url=%{url}&title=%{title}",
	  // icons should be 32x32 pixels
	  // "markedIcon": baseurl+"/images/checkbox-checked-32.png",
	  // "unmarkedIcon": baseurl+"/images/checkbox-unchecked-32.png",
	  "unmarkedIcon": baseurl+"/images/hz-bookmark-32.png",
	
	  // should be available for display purposes
	  "description": "$description",
	  "author": "$author",
	  "homepageURL": "$homepage",
	
	  // optional
	  "version": "1.0"
	}
	
	function activate(node) {
	  var event = new CustomEvent("ActivateSocialFeature");
	  var jdata = JSON.stringify(data);
	  node.setAttribute("data-service", JSON.stringify(data));
	  node.dispatchEvent(event);
	}
	</script>
	
	<button onclick="activate(this)" title="$activate" class="btn btn-primary">$activate</button>
	
EOT;
	
	return $s;
	
	}
	
}