summaryrefslogtreecommitdiffstats
path: root/usr/local/www/widgets/widgets/rss.widget.php
blob: c88a2ac3b874557d3d27e1cf734d518f63bf1b28 (plain)
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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
<?php
/*
        $Id$
        Copyright (C) 2013-2014 Electric Sheep Fencing, LP

        Copyright 2009 Scott Ullrich
        Part of pfSense widgets (https://www.pfsense.org)

        Redistribution and use in source and binary forms, with or without
        modification, are permitted provided that the following conditions are met:

        1. Redistributions of source code must retain the above copyright notice,
           this list of conditions and the following disclaimer.

        2. Redistributions in binary form must reproduce the above copyright
           notice, this list of conditions and the following disclaimer in the
           documentation and/or other materials provided with the distribution.

        THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
        INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
        AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
        AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
        OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
        SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
        INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
        CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
        ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
        POSSIBILITY OF SUCH DAMAGE.
*/

$nocsrf = true;

require_once("guiconfig.inc");
require_once("pfsense-utils.inc");
require_once("functions.inc");

if($_POST['rssfeed']) {
	$config['widgets']['rssfeed'] = str_replace("\n", ",", htmlspecialchars($_POST['rssfeed'], ENT_QUOTES | ENT_HTML401));
	$config['widgets']['rssmaxitems'] = str_replace("\n", ",", htmlspecialchars($_POST['rssmaxitems'], ENT_QUOTES | ENT_HTML401));
	$config['widgets']['rsswidgetheight'] = htmlspecialchars($_POST['rsswidgetheight'], ENT_QUOTES | ENT_HTML401);
	$config['widgets']['rsswidgettextlength'] = htmlspecialchars($_POST['rsswidgettextlength'], ENT_QUOTES | ENT_HTML401);
	write_config("Saved RSS Widget feed via Dashboard");
	header("Location: /");
}

// Use saved feed and max items
if($config['widgets']['rssfeed'])
	$rss_feed_s = explode(",", $config['widgets']['rssfeed']);

if($config['widgets']['rssmaxitems'])
	$max_items =  $config['widgets']['rssmaxitems'];

if(is_numeric($config['widgets']['rsswidgetheight']))
	$rsswidgetheight =  $config['widgets']['rsswidgetheight'];

if(is_numeric($config['widgets']['rsswidgettextlength']))
	$rsswidgettextlength =  $config['widgets']['rsswidgettextlength'];

// Set a default feed if none exists
if(!$rss_feed_s) {
	$rss_feed_s = "https://blog.pfsense.org";
	$config['widgets']['rssfeed'] = "https://blog.pfsense.org";
}

if(!$max_items)
	$max_items = 10;

if(!$rsswidgetheight)
	$rsswidgetheight = 300;

if(!$rsswidgettextlength)
	$rsswidgettextlength = 140;	// oh twitter, how do we love thee?

if($config['widgets']['rssfeed'])
	$textarea_txt =  str_replace(",", "\n", $config['widgets']['rssfeed']);
else
	$textarea_txt = "";

?>

<input type="hidden" id="rss-config" name="rss-config" value="" />

<div id="rss-settings" class="widgetconfigdiv" style="display:none;">
	<form action="/widgets/widgets/rss.widget.php" method="post" name="iformc">
		<textarea name="rssfeed" class="formfld unknown textarea_widget" id="rssfeed" cols="40" rows="3"><?=$textarea_txt;?></textarea>
		<br />
		<table summary="rss widget">
			<tr>
				<td align="right">
					Display number of items:
				</td>
				<td>
					<select name='rssmaxitems' id='rssmaxitems'>
						<option value='<?= $max_items ?>'><?= $max_items ?></option>
						<?php
							for($x=100; $x<5100; $x=$x+100)
								echo "<option value='{$x}'>{$x}</option>\n";
						?>
					</select>
				</td>
			</tr>
			<tr>
				<td align="right">
					Widget height:
				</td>
				<td>
					<select name='rsswidgetheight' id='rsswidgetheight'>
						<option value='<?= $rsswidgetheight ?>'><?= $rsswidgetheight ?>px</option>
						<?php
							for($x=100; $x<5100; $x=$x+100)
								echo "<option value='{$x}'>{$x}px</option>\n";
						?>
					</select>
				</td>
			</tr>
			<tr>
				<td align="right">
					Show how many characters from story:
				</td>
				<td>
					<select name='rsswidgettextlength' id='rsswidgettextlength'>
						<option value='<?= $rsswidgettextlength ?>'><?= $rsswidgettextlength ?></option>
						<?php
							for($x=10; $x<5100; $x=$x+10)
								echo "<option value='{$x}'>{$x}</option>\n";
						?>
					</select>
				</td>
			</tr>
			<tr>
				<td>
					&nbsp;
				</td>
				<td>
					<input id="submitc" name="submitc" type="submit" class="formbtn" value="Save" />
				</td>
			</tr>
		</table>
	</form>
</div>

<div id="rss-widgets" style="padding: 5px; height: <?=$rsswidgetheight?>px; overflow:scroll;">
<?php
	if(!is_dir("/tmp/simplepie")) {
		mkdir("/tmp/simplepie");
		mkdir("/tmp/simplepie/cache");
	}
	exec("chmod a+rw /tmp/simplepie/.");
	exec("chmod a+rw /tmp/simplepie/cache/.");
	require_once("simplepie/simplepie.inc");
	function textLimit($string, $length, $replacer = '...') {
	  if(strlen($string) > $length)
	  return (preg_match('/^(.*)\W.*$/', substr($string, 0, $length+1), $matches) ? $matches[1] : substr($string, 0, $length)) . $replacer;
	  return $string;
	}
	$feed = new SimplePie();
	$feed->set_cache_location("/tmp/simplepie/");
	$feed->set_feed_url($rss_feed_s);
	$feed->init();
	$feed->set_output_encoding('latin-1');
	$feed->handle_content_type();
	$counter = 1;
	foreach($feed->get_items() as $item) {
		$feed = $item->get_feed();
		$feed->strip_htmltags();
		echo "<a target='blank' href='" . $item->get_permalink() . "'>" . $item->get_title() . "</a><br />";
		$content = $item->get_content();
		$content = strip_tags($content);
		echo textLimit($content, $rsswidgettextlength) . "<br />";
		echo "Source: <a target='_blank' href='" . $item->get_permalink() . "'><img src='" . $feed->get_favicon() . "' alt='" . $feed->get_title() . "' title='" . $feed->get_title() . "' border='0' width='16' height='16' /></a><br />";
		$counter++;
		if($counter > $max_items)
			break;
		echo "<hr/>";
	}
?>
</div>

<!-- needed to display the widget settings menu -->
<script type="text/javascript">
//<![CDATA[
	selectIntLink = "rss-configure";
	textlink = document.getElementById(selectIntLink);
	textlink.style.display = "inline";
//]]>
</script>
OpenPOWER on IntegriCloud