Skip to content

Instantly share code, notes, and snippets.

@joshbirk
Created October 30, 2012 19:54
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save joshbirk/3982587 to your computer and use it in GitHub Desktop.
Save joshbirk/3982587 to your computer and use it in GitHub Desktop.
RSS Handler
global class RSSHandler implements Schedulable {
global RSSHandler() {
}
global void execute(SchedulableContext c) {
updateDeveloperBlog();
}
@future(callout=true)
static global void updateDeveloperBlog() {
List<Dom.XMLNode> recentPosts = RSSHandler.getRSSFeed('http://feeds.feedburner.com/developerforce/developerelations?format=xml');
List<Blog_Entry__c> blogEntries = new List<Blog_Entry__c>();
List<String> titles = new List<String>();
List<Blog_Entry__c> entriesToAdd = new List<Blog_Entry__c>();
String listOfBlogs = '';
System.Debug('# OF POSTS FOUND:' +recentPosts.size());
for(Dom.XMLNode post : recentPosts) {
blogEntries.add(RSSHandler.convertFeedToBlogPost(post));
}
System.Debug('# OF ENTRIES FOUND:' +blogEntries.size());
for(Blog_Entry__c bp : blogEntries) {
titles.add(bp.Title__c);
}
List<Blog_Entry__c> blogs = [SELECT Id, Wordpress__c, Title__c, Author__c from Blog_Entry__c WHERE Title__c IN :titles];
for(Blog_Entry__c blogEntry : blogEntries) {
Boolean added = false;
for(Blog_Entry__c blog : blogs) {
if(blog.Title__c == blogEntry.Title__c) { added = true; }
}
if(!added) { entriesToAdd.add(blogEntry); }
}
insert entriesToAdd;
if(entriesToAdd.size() > 0) {
for(Blog_Entry__c blogEntry : entriesToAdd) {
listOfBlogs += '<BR/><a href="'+blogEntry.Link__c+'"><strong>'+blogEntry.Title__c+'</strong></a>,&nbsp;'+blogEntry.Author__c+''+ + '<BR />';
listofBlogs += '<a href="http://twitter.com/?status='+EncodingUtil.urlEncode(blogEntry.Title__c +', '+blogEntry.Link__c, 'UTF-8')+'">Tweet This</a><BR /><HR />';
}
RSSHandler.sendEmailNotice(listOfBlogs);
}
}
static global List<Dom.XMLNode> getRSSFeed(string URL) {
Http h = new Http();
HttpRequest req = new HttpRequest();
// url that returns the XML in the response body
req.setEndpoint(url);
req.setMethod('GET');
HttpResponse res = h.send(req);
Dom.Document doc = res.getBodyDocument();
Dom.XMLNode rss = doc.getRootElement();
System.debug('@@' + rss.getName());
List<Dom.XMLNode> rssList = new List<Dom.XMLNode>();
for(Dom.XMLNode child : rss.getChildren()) {
System.debug('@@@' + child.getName());
for(Dom.XMLNode channel : child.getChildren()) {
System.debug('@@@@' + channel.getName());
if(channel.getName() == 'item') {
rssList.add(channel);
}
}
}
return rssList;
}
static global Blog_Entry__c convertFeedToBlogPost(Dom.XMLNode post) {
Blog_Entry__c bp = new Blog_Entry__c();
Integer tagIndex = 0;
for(Dom.XMLNode child : post.getChildren()) {
// System.debug('@@@@ -- @' + child.getName());
if(child.getName() == 'title') { bp.Title__c = child.getText(); }
if(child.getName() == 'creator') { bp.Author__c = child.getText(); }
if(child.getName() == 'pubDate') { bp.Published__c = Utility.convertRSSDateStringToDate(child.getText()); }
if(child.getName() == 'origLink') { bp.Link__c = child.getText(); }
if(child.getName() == 'description') { bp.Lead_Copy__c = child.getText(); }
if(child.getName() == 'category') {
tagIndex++;
if(tagIndex == 1) { bp.Tag_1__c = child.getText(); }
if(tagIndex == 2) { bp.Tag_2__c = child.getText(); }
if(tagIndex == 3) { bp.Tag_3__c = child.getText(); }
}
}
return bp;
}
global static void sendEmailNotice(String links) {
Messaging.SingleEmailMessage mail = new Messaging.SingleEmailMessage();
mail.setToAddresses(Label.blogemaillist.split(','));
mail.setSubject ('[BLOGLOG] New Entries');
mail.setHTMLBody('<h3>New Blog Posts:</h3>'+links+'<br/><br/>');
Messaging.SendEmailResult [] r = Messaging.sendEmail(new Messaging.SingleEmailMessage[] {mail});
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment