-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathplugin_setup.php
executable file
·151 lines (105 loc) · 3.95 KB
/
plugin_setup.php
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
<?php
//$DEBUG=true;
include_once "/opt/fpp/www/common.php";
include_once "functions.inc.php";
include_once "commonFunctions.inc.php";
//include the array of sports
include_once "SPORTS.inc.php";
//$pluginName = "SportsTicker"; //pjd 9/19/2022 updateing for fpp 6.0
//$pluginVersion ="2.0"; //pjd 9/19/2022 updateing for fpp 6.0
// pat added 9/19/2022
$pluginName = basename(dirname(__FILE__)); //pjd 7-10-2019 added per dkulp
$pluginVersion ="6.0"; //pjd 9/19/2022 updateing for fpp 6.0
$Plugin_DBName = "/tmp/FPP.".$pluginName.".db";
$pluginUpdateFile = $settings['pluginDirectory']."/".$pluginName."/"."pluginUpdate.inc";
$logFile = $settings['logDirectory']."/".$pluginName.".log";
logEntry("plugin update file: ".$pluginUpdateFile);
if(isset($_POST['updatePlugin']))
{
logEntry("updating plugin...");
$updateResult = updatePluginFromGitHub($gitURL, $branch="master", $pluginName);
echo $updateResult."<br/> \n";
}
if(isset($_POST['submit']))
{
$SPORTS = implode(',', $_POST["SPORTS"]);
// echo "Writring config fie <br/> \n";
WriteSettingToFile("SPORTS",$SPORTS,$pluginName);
//WriteSettingToFile("ENABLED",urlencode($_POST["ENABLED"]),$pluginName);
WriteSettingToFile("SEPARATOR",urlencode($_POST["SEPARATOR"]),$pluginName);
WriteSettingToFile("LAST_READ",urlencode($_POST["LAST_READ"]),$pluginName);
}
//print_r($pluginSettings);
//$SPORTS = urldecode(ReadSettingFromFile("SPORTS",$pluginName));
$SPORTS = urldecode($pluginSettings['SPORTS']);
//$ENABLED = urldecode(ReadSettingFromFile("ENABLED",$pluginName));
$ENABLED = urldecode($pluginSettings['ENABLED']);
//$SEPARATOR = urldecode(ReadSettingFromFile("SEPARATOR",$pluginName));
$SEPARATOR = urldecode($pluginSettings['SEPARATOR']);
//$LAST_READ = urldecode(ReadSettingFromFile("LAST_READ",$pluginName));
$LAST_READ = $pluginSettings['LAST_READ'];
if($SEPARATOR == "") {
$SEPARATOR="|";
}
//echo "sports read: ".$SPORTS."<br/> \n";
if((int)$LAST_READ == 0 || $LAST_READ == "") {
$LAST_READ=0;
}
$db = new SQLite3($Plugin_DBName) or die('Unable to open database');
createSportsTickerTables($db);
?>
<html>
<head>
</head>
<div id="<?echo $pluginName;?>" class="settings">
<fieldset>
<legend><?php echo $pluginName." Version: ".$pluginVersion;?> Support Instructions</legend>
<p>Known Issues:
<ul>
<li>NONE</li>
</ul>
<p>Configuration:
<ul>
<li>Select the sports you want to include in the list, shift click to multi select</li>
<li>Enable the plugin, Restart FPPD</li>
<li>Configure your separator that will appear between scores.. Default |
</ul>
<ul>
<li>Add the crontabAdd options to your crontab to have the SportsTicker get data every X minutes to process commands</li>
<li>NOTE: This plugin utilizes the MessageQueue plugin. Please install that plugin before configuring this plugin</li>
</ul>
<form method="post" action="http://<? echo $_SERVER['SERVER_ADDR'].":".$_SERVER['SERVER_PORT']?>/plugin.php?plugin=<?echo $pluginName;?>&page=plugin_setup.php">
<?
echo "<input type=\"hidden\" name=\"LAST_READ\" value=\"".$LAST_READ."\"> \n";
$restart=0;
$reboot=0;
echo "ENABLE PLUGIN: ";
//if($ENABLED == "1") {
// echo "<input type=\"checkbox\" checked name=\"ENABLED\"> \n";
PrintSettingCheckbox("Sports Ticker", "ENABLED", $restart = 0, $reboot = 0, "ON", "OFF", $pluginName = $pluginName, $callbackName = "");
// } else {
// echo "<input type=\"checkbox\" name=\"ENABLED\"> \n";
//}
echo "<p/> \n";
echo "Sports: ";
printSportsOptions();
echo "<p/> \n";
echo "<p/> \n";
echo "Separator: \n";
echo "<input type=\"text\" name=\"SEPARATOR\" size=\"3\" value=\"".$SEPARATOR."\"> \n";
?>
<p/>
<input id="submit_button" name="submit" type="submit" class="buttons" value="Save Config">
<?
if(file_exists($pluginUpdateFile))
{
//echo "updating plugin included";
include $pluginUpdateFile;
}
?>
</form>
<p>To report a bug, please file it against the sms Control plugin project on Git: https://github.com/LightsOnHudson/FPP-Plugin-SportsTicker
</fieldset>
</div>
<br />
</html>