* Create initial buffer updates logic * Add UI functionality and test for sattelite tweets * Add additional /mod functionality and re-use script partial in /internal
42 lines
1.2 KiB
Ruby
42 lines
1.2 KiB
Ruby
class Bufferizer
|
|
attr_accessor :article, :text
|
|
def initialize(article, text)
|
|
@article = article
|
|
@text = text
|
|
end
|
|
|
|
def satellite_tweet!
|
|
article.tags.each do |tag|
|
|
if tag.buffer_profile_id_code.present?
|
|
BufferUpdate.buff!(article.id, twitter_buffer_text, tag.buffer_profile_id_code, "twitter", tag.id)
|
|
end
|
|
end
|
|
article.update(last_buffered: Time.now)
|
|
end
|
|
|
|
def main_teet!
|
|
BufferUpdate.buff!(article.id, twitter_buffer_text, ApplicationConfig["BUFFER_TWITTER_ID"], "twitter", nil)
|
|
article.update(last_buffered: Time.now)
|
|
end
|
|
|
|
def facebook_post!
|
|
BufferUpdate.buff!(article.id, fb_buffer_text, ApplicationConfig["BUFFER_FACEBOOK_ID"], "facebook")
|
|
BufferUpdate.buff!(article.id, fb_buffer_text, ApplicationConfig["BUFFER_LINKEDIN_ID"], "linkedin")
|
|
article.update(facebook_last_buffered: Time.now)
|
|
end
|
|
|
|
private
|
|
|
|
def twitter_buffer_text
|
|
twit_name = article.user.twitter_username
|
|
if twit_name.present? && text.size < 245
|
|
"#{text}\n{ author: @#{twit_name} }\nhttps://dev.to#{article.path}"
|
|
else
|
|
"#{text} https://dev.to#{article.path}"
|
|
end
|
|
end
|
|
|
|
def fb_buffer_text
|
|
"#{text} https://dev.to#{article.path}"
|
|
end
|
|
end
|