123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- <?php
- require_once('php/autoloader.php');
- $section="";
- $loc = "US";
- $lang = "en";
- $feed_url="";
- if(isset( $_GET['section'])) {
- $section = $_GET["section"];
- }
- if(isset( $_GET['loc'])) {
- $loc = strtoupper($_GET["loc"]);
- }
- if(isset( $_GET['lang'])) {
- $lang = $_GET["lang"];
- }
- if($section) {
- $feed_url="https://news.google.com/news/rss/headlines/section/topic/".strtoupper($section)."?ned=".$loc."&hl=".$lang;
- } else {
- $feed_url="https://news.google.com/rss?gl=".$loc."&hl=".$lang."-".$loc."&ceid=".$loc.":".$lang;
- }
- //https://news.google.com/news/rss/headlines/section/topic/CATEGORYNAME?ned=in&hl=en
- $feed = new SimplePie();
-
- // Set the feed to process.
- $feed->set_feed_url($feed_url);
-
- // Run SimplePie.
- $feed->init();
-
- // This makes sure that the content is sent to the browser as text/html and the UTF-8 character set (since we didn't change it).
- $feed->handle_content_type();
- //replace chars that old machines probably can't handle
- function clean_str($str) {
- $str = str_replace( "‘", "'", $str );
- $str = str_replace( "’", "'", $str );
- $str = str_replace( "“", '"', $str );
- $str = str_replace( "”", '"', $str );
- $str = str_replace( "–", '-', $str );
- $str = str_replace( ' ', ' - ', $str );
- return $str;
- }
-
- ?>
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 2.0//EN">
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <link rel="stylesheet" type="text/css" href="/main.css">
- <html>
- <head>
- <title>NewsFeed.FYI</title>
- </head>
- <body>
- <center><h1><font color="#9400d3"><i>NewsFeed.FYI</i></font></h1></center>
- <hr>
- <center><small>Basic HTML Google News Feed. Based on <a href="https://github.com/ActionRetro/68k-news" target="_blank"><b>source</b></a> for <a href="http://68k.news" target="_blank"><b>68k.news</b></a>, originally built by <a href="https://youtube.com/ActionRetro" target="_blank"><b>Action Retro</b></a>.</small></center>
- <?php
- if($section) {
- $section_title = explode(" - ", strtoupper($feed->get_title()));
- echo "<center><h2>" . $section_title[0] . " NEWS</h2></center>";
- }
- ?>
- <small>
- <p>
- <center><a href="index.php?loc=<?php echo $loc ?>">TOP</a> <a href="index.php?section=world&loc=<?php echo strtoupper($loc) ?>">WORLD</a> <a href="index.php?section=nation&loc=<?php echo strtoupper($loc) ?>">NATION</a> <a href="index.php?section=business&loc=<?php echo strtoupper($loc) ?>">BUSINESS</a> <a href="index.php?section=technology&loc=<?php echo strtoupper($loc) ?>">TECHNOLOGY</a> <a href="index.php?section=entertainment&loc=<?php echo strtoupper($loc) ?>">ENTERTAINMENT</a> <a href="index.php?section=science&loc=<?php echo strtoupper($loc) ?>">SCIENCE</a> <a href="index.php?section=health&loc=<?php echo strtoupper($loc) ?>">HEALTH</a><br>
- <font size="1">-=-=-=-=-=-=-=-=-=-=-=-=-=-</font>
- <br><?php echo strtoupper($loc) ?> Edition <a href="choose_edition.php">(Change)</a></center>
- </p>
- </small>
- <?php
- /*
- Here, we'll loop through all of the items in the feed, and $item represents the current item in the loop.
- */
- foreach ($feed->get_items() as $item):
- ?>
-
- <h3><font size="5"><a href="<?php echo 'article.php?loc=' . $loc . '&a=' . $item->get_permalink(); ?>"><?php echo clean_str($item->get_title()); ?></a></font></h3>
- <p><font size="4"><?php
- $subheadlines = clean_str($item->get_description());
- $remove_google_link = explode("<li><strong>", $subheadlines);
- $no_blank = str_replace('target="_blank"', "", $remove_google_link[0]) . "</li></ol></font></p>";
- $cleaned_links = str_replace('<a href="', '<a href="article.php?loc=' . $loc . '&a=', $no_blank);
- $cleaned_links = strip_tags($cleaned_links, '<a><ol><ul><li><br><p><small><font><b><strong><i><em><blockquote><h1><h2><h3><h4><h5><h6>');
- $cleaned_links = str_replace( 'strong>', 'b>', $cleaned_links); //change <strong> to <b>
- $cleaned_links = str_replace( 'em>', 'i>', $cleaned_links); //change <em> to <i>
- $cleaned_links = str_replace( "View Full Coverage on Google News", "", $cleaned_links);
- echo $cleaned_links;
- ?></p>
- <p><small>Posted on <?php echo $item->get_date('j F Y | g:i a'); ?></small></p>
-
- <?php endforeach; ?>
- <p><center><small>v1.0 Powered by Mozilla Readability (Andres Rey PHP Port) and SimplePie</small><center></p>
- </body>
- </html>
|