Small code layout improvement.

This commit is contained in:
Martin Edenhofer 2013-12-09 07:42:12 +01:00
parent 6bf1d11f4d
commit 09a8278031

View file

@ -26,7 +26,7 @@ class Channel::Twitter2
tweets.push tweet tweets.push tweet
end end
@article_type = 'twitter status' @article_type = 'twitter status'
fetch_loop(tweets, channel, search[:group]) fetch_loop( tweets, channel, search[:group] )
} }
end end
@ -35,7 +35,7 @@ class Channel::Twitter2
puts " - searching for mentions" puts " - searching for mentions"
tweets = @client.mentions_timeline tweets = @client.mentions_timeline
@article_type = 'twitter status' @article_type = 'twitter status'
fetch_loop(tweets, channel, channel[:options][:mentions][:group]) fetch_loop( tweets, channel, channel[:options][:mentions][:group] )
end end
# direct messages # direct messages
@ -43,12 +43,12 @@ class Channel::Twitter2
puts " - searching for direct_messages" puts " - searching for direct_messages"
tweets = @client.direct_messages tweets = @client.direct_messages
@article_type = 'twitter direct-message' @article_type = 'twitter direct-message'
fetch_loop(tweets, channel, channel[:options][:direct_messages][:group]) fetch_loop( tweets, channel, channel[:options][:direct_messages][:group] )
end end
puts 'done' puts 'done'
end end
def fetch_loop(tweets, channel, group) def fetch_loop( tweets, channel, group )
# get all tweets # get all tweets
all_tweets = [] all_tweets = []
@ -229,16 +229,14 @@ class Channel::Twitter2
) )
end end
return ticket ticket
end end
def fetch_article_create(user,ticket,tweet, sender) def fetch_article_create( user, ticket, tweet, sender )
# find if record already exists # find if record already exists
article = Ticket::Article.where( :message_id => tweet.id.to_s ).first article = Ticket::Article.where( :message_id => tweet.id.to_s ).first
if article return article if article
return article
end
# set ticket state to open if not new # set ticket state to open if not new
if ticket.ticket_state.name != 'new' if ticket.ticket_state.name != 'new'