Create RSS aggregator with PHP and AJAX (1) _ PHP Tutorial

Source: Internet
Author: User
Create an RSS aggregator using PHP and AJAX (1 ). Although the PHP language is used in this article, please remember that any server language will work normally. To understand this article, I assume that you basically understand JavaScript, PHP, or a similar Server. Although this article uses the PHP language, remember that any server language will work normally. To understand this article, I assume that you basically understand JavaScript, PHP, or a similar server-side language.

In this example, AJAX is used to send a request from an RSS feed to a custom PHP object. This PHP object copies the feed on the local server and returns this path. The request object receives the path, analyzes it, and displays the data to the user in HTML format. This sounds like it involves many steps. In fact, it consists of only four small files. Four small files are used to balance their specific strengths and make the processing of the entire system efficient.

I think some readers may ask why you want to create a copy of the feed on the local server instead of simply analyzing the original feed. This allows you to bypass the cross-origin restrictions imposed by xml http Request objects. Later, I will explain how to create this custom PHP object. but first, let's start with form creation.

Create a request form

The first thing you need to do is include JavaScript and any CSS files that you may want to use between your HTML head tags. I included a style table to implement the final layout of the aggregator and used a JavaScript file to send requests and analyze the feeds:

<Link href = "css/layout.css? 1.1.9 "rel =" stylesheet "type =" text/css "/>

<Script src = "js/request. js? 1.1.9 "> </script>

Next, create a form that sends a request to an RSS feed you selected. The form I created contains only one input field and one button for submitting the request. The query of this request is a string consisting of the feed input value and a password that will be verified on the server side. as an example, I use the following form:

"Password = mypassword

This code sends a request each time the page is loaded. Therefore, if the page is refreshed, the existing feed string in this input field will be requested during page loading. The following is an example of form data, along with some p labels used to display specific nodes of the analyzed feed:

<Body onload = "javascript: makeRequest ('request. php? Request = '+ document. feedForm. feed. value +' "password = mypassword');">

<Form name = "feedForm" method = "post" action = "javascript: makeRequest ('request. php? Request = '+ document. feedForm. feed. value +' "password = mypassword');">

Enter a feed: <input type = "text" name = "feed" id = "feed" size = "20">

<Input type = "submit" name = "submit" value = "Add Feed">

</Form>

<P id = "logo"> </p>

<Hr/>

<P id = "copy"> </p>

<P id = "details"> </p>

</Body>

The three p labels I created are logo, copy, and details. each of them has an associated style in the layout style sheet. They will be used when we analyze the feeds, but we need to first be able to access the feeds we requested. This can be done using the PHP object I mentioned earlier.

Create a custom PHP object

I used PHP to create a small RSS class, which creates a copy of the Request feed on the local server so that it can be accessed by the XML HTTP Request object we will create later. Typically, you cannot request a file across domains, which means that the file to be requested must be on the local server. This class is a way to solve cross-domain problems, because it creates a copy of the feed, this copy is requested on the local server and returns the local path to the feed, then it is accessed by the Request object.

The only method in this class is a request method, which has only one parameter pointing to the requested RSS feed URL. Then, it checks whether a directory is located on the local server through the rss name. If it does not exist, create a directory and set its permission mode to 0666, which means the directory can be read and written. When it is set to readable, the directory can be accessed later. when it is set to writable, you can write a copy of the feed to the directory on the local server:

// Create a directory if the directory does not exist

$ Dir = "rss ";

If (! Is_dir ($ dir ))

{Mkdir ($ dir, 0666 );

}

Note:On a Windows Server, pattern settings in PHP 4.2.0 and later are not required. However, if it exists, it will be ignored; therefore, I keep it for the project to be migrated to a UNIX or Linux server.

Before copying a feed to this server, we need a unique file name. I used the md5 encryption method for this complete URL to ensure that all the feed names are unique. With this new file name, it can connect a string describing the directory pointing to the file; this will be used when creating a copy of the feed:

// Create a unique name

$ File = md5 ($ rss_url );

$ Path = "$ dir/$ file. xml ";

You can create a copy of the file by referring to the defined path above and the original requested feed URL. Finally, return the path to the new file as a response to the request:

// Copy the feed to the local server

Copy ($ rss_url, "$ path ");

Return $ path;

Following is the small, yet powerful RSS class in its entirety:

<? Php

Class RSS

{Function get ($ rss_url)

{

If ($ rss_url! = "")

{

// Create a directory if the directory does not exist

$ Dir = "rss ";

If (! Is_dir ($ dir ))

{

Mkdir ($ dir, 0666 );

}

// Create a unique name

$ File = md5 ($ rss_url );

$ Path = "$ dir/$ file. xml ";

// Copy the feed to the local server

Copy ($ rss_url, "$ path ");

Return $ path;

}

}

}

?>

To access methods in this PHP class, a request file is required to act as an interface of this class, which is exactly the file we are requesting. This file first verifies a password variable queried from this request, or returns a message indicating that the requester is not an authorized user, you can also use the path pointing to the RSS feed (which is copied to the local server after being processed by the request method) to respond. In response to this RSS feed, you need to include this RSS object and instantiate it. you need to use the requested URL as a parameter to activate the request method:

<?

If ($ password = "mypassword ")

{

Require_once ('classes/RSS. class. php ');

$ Rss = new RSS ();

Echo $ rss-> get ($ request );

}

Else

{

Echo "You are an unauthorized user ";

}

?>

1

Bytes. To understand this article, I assume that you basically understand JavaScript and PHP or a similar server side...

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.