X-Git-Url: http://gitweb.michael.orlitzky.com/?p=dead%2Fhalcyon.git;a=blobdiff_plain;f=src%2FTwitter%2FStatus.hs;h=6416232ebff9499bfc2d25e5bd258e8340e19ef0;hp=59b98761fce86d62ed6fdaab46d8c950c19fb174;hb=e13f2a1eced5f388b37bc0ed12e9db72eba4b5d4;hpb=ee2deb5a51e416d607cce45ddd10d4e19c050771 diff --git a/src/Twitter/Status.hs b/src/Twitter/Status.hs index 59b9876..6416232 100644 --- a/src/Twitter/Status.hs +++ b/src/Twitter/Status.hs @@ -3,8 +3,12 @@ module Twitter.Status where import Data.Maybe +import Data.String.Utils (join, splitWs) +import Test.HUnit +import Text.Regex (matchRegex, mkRegex) import Text.XML.HaXml +import StringUtils (listify) import Twitter.User import Twitter.Xml @@ -97,10 +101,12 @@ pretty_print status = replicate ((length name) + 3 + (length (created_at status))) '-', "\n", replace_entities (text status), + "\n\n", + join "\n" user_timeline_urls, "\n" ] where name = screen_name (user status) - + user_timeline_urls = listify (make_user_timeline_urls status) -- |Given a list of statuses, returns the greatest status_id belonging @@ -110,3 +116,48 @@ get_max_status_id statuses = maximum status_ids where status_ids = map status_id statuses + + +-- |Parse one username from a word. +parse_username :: String -> Maybe String +parse_username word = + case matches of + Nothing -> Nothing + Just [] -> Nothing + Just (first_match:_) -> Just first_match + where + username_regex = mkRegex "@([a-zA-Z0-9_]+)" + matches = matchRegex username_regex word + + +-- |Parse all usernames of the form @username from a status. +parse_usernames_from_status :: Status -> [String] +parse_usernames_from_status status = + catMaybes (map parse_username status_words) + where + status_words = splitWs (text status) + +-- |Get all referenced users' timeline URLs. +make_user_timeline_urls :: Status -> [String] +make_user_timeline_urls status = + map screen_name_to_timeline_url usernames + where + usernames = parse_usernames_from_status status + + +status_tests :: [Test] +status_tests = [ test_parse_usernames ] + + +test_parse_usernames :: Test +test_parse_usernames = + TestCase $ assertEqual "All usernames are parsed." expected_usernames actual_usernames + where + dummy_user = User { screen_name = "nobody" } + dummy_status = Status { status_id = 1, + created_at = "never", + text = "Hypothesis: @donsbot and @bonus500 are two personalities belonging to the same person.", + user = dummy_user } + + actual_usernames = parse_usernames_from_status dummy_status + expected_usernames = ["donsbot", "bonus500"]