Click here to Skip to main content
15,881,424 members
Articles / Programming Languages / C#

digg API.NET - C# Implementation of digg Web Services

Rate me:
Please Sign up or sign in to vote.
3.92/5 (5 votes)
5 Oct 20075 min read 84.2K   275   28  
A C# Library Interface For the Digg.com API
using System;
using System.Collections;
using System.Collections.Generic;
using System.Data;
using System.Net;
using System.Text;
using System.Xml;

namespace Baileysoft.Rss.DiggAPI
{
    /// <summary>
    /// Xml parser methods
    /// </summary>
    public class Parser
    {
        public static void populateStoryCollection(StoryCollection alStories,
                                                   string diggWebServiceUrl)
        {
            Story newStory = new Story();
            XmlTextReader reader = Parser.CreateWebRequest(diggWebServiceUrl);
                      
            while (reader.Read())
            {
                if (reader.Name == "story")
                {
                    for (int i = 0; i < reader.AttributeCount; i++)
                    {
                        switch (i)
                        {
                            case 0: newStory.Id = reader.GetAttribute(i).ToString(); break;
                            case 1: newStory.Link = reader.GetAttribute(i).ToString(); break;
                            case 2: newStory.SubmitDate = reader.GetAttribute(i).ToString(); break;
                            case 3: newStory.Diggs = reader.GetAttribute(i).ToString(); break;
                            case 4: newStory.Comments = new CommentsCollection(newStory); break;                             
                                //newStory.Comments = reader.GetAttribute(i).ToString(); break;
                            case 5: newStory.CommentsUrl = reader.GetAttribute(i).ToString(); break;
                            case 6: newStory.PromoteDate = reader.GetAttribute(i).ToString(); break;
                            case 7: newStory.Status = reader.GetAttribute(i).ToString(); break;
                        }
                    }
                }

                if (reader.Name == "title")
                {
                    newStory.Title = reader.ReadString();
                }

                if (reader.Name == "description")
                {
                    newStory.Description = reader.ReadString();
                }

                if (reader.Name == "user")
                {
                    for (int i = 0; i < reader.AttributeCount; i++)
                    {
                        switch (i)
                        {
                            case 0: newStory.Submitter = reader.GetAttribute(i).ToString(); break;
                            case 1: newStory.SubmitterIcon = reader.GetAttribute(i).ToString(); break;
                            case 3: newStory.SubmitterProfileViews = reader.GetAttribute(i).ToString(); break;
                        }
                    }
                }

                if (reader.Name == "topic")
                {
                    newStory.Topic = reader.GetAttribute(0).ToString();
                }

                if (reader.Name == "container")
                {
                    newStory.Container = reader.GetAttribute(0);
                    alStories.Add(newStory);
                    newStory = new Story();
                }
            }
        }

        public static List<Comment> GetComments(Story story)
        {
            List<Comment> comments = new List<Comment>();
            string url = string.Format(Globals.Base + "stories/{0}/comments?count={1}&appkey={2}", story.Id, Globals.Count, Globals.AppKey);
            XmlTextReader reader = Parser.CreateWebRequest(url);
            Comment newComment = new Comment();

            while (reader.Read())
            {
                List<string> attribs = new List<string>();
                if (reader.HasAttributes)
                {
                    for (int i = 0; i < reader.AttributeCount; i++)
                    {
                        attribs.Add(reader.GetAttribute(i).ToString());
                    }
                }

                if (reader.LocalName == "comment")
                {
                    newComment.Text = reader.ReadString();
                    newComment.Date = attribs[0];
                    newComment.Id = attribs[1];
                    newComment.Up = attribs[3];
                    newComment.Down = attribs[4];
                    newComment.Replies = attribs[5];
                    newComment.User = attribs[6];
                  
                    comments.Add(newComment);
                    newComment = new Comment();
                }
            }
            return comments;
        }

        public static List<string> GetTopics()
        {
            List<string> topics = new List<string>();
            string url = Globals.Base + "topics?appkey=" + Globals.AppKey;
            XmlTextReader reader = Parser.CreateWebRequest(url);
          
            while (reader.Read())
            {
                if (reader.Name == "topic" && reader.HasAttributes)
                {
                    topics.Add(reader.GetAttribute(0));
                }
            }
            return topics;
        }

        public static List<string> GetStoryIDsByUser(string userName)
        {
            List<string> ids = new List<string>();
            string url = Globals.Base + "user/" + userName + "/diggs?count=" + Globals.Count +"&appkey=" + Globals.AppKey;
            XmlTextReader reader = Parser.CreateWebRequest(url);

            while (reader.Read())
            {
                if (reader.Name == "digg" && reader.HasAttributes)
                {
                    ids.Add(reader.GetAttribute(1));
                }
            }
            return ids;
        }


        public static XmlTextReader CreateWebRequest(string url)
        {
            HttpWebRequest webRequest = (HttpWebRequest)WebRequest.Create(url);
            webRequest.UserAgent = ".NET Framework digg Test Client";
            webRequest.Credentials = System.Net.CredentialCache.DefaultCredentials;
            webRequest.Accept = "text/xml";
            HttpWebResponse webResponse = (HttpWebResponse)webRequest.GetResponse();
            System.IO.Stream responseStream = webResponse.GetResponseStream();
            XmlTextReader reader = new XmlTextReader(responseStream);
            return reader;
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Software Developer
United States United States
I'm a professional .NET software developer and proud military veteran. I've been in the software business for 20+ years now and if there's one lesson I have learned over the years, its that in this industry you have to be prepared to be humbled from time to time and never stop learning!

Comments and Discussions