From 87338760ad2f8773330b1934946bbd23e35274ac Mon Sep 17 00:00:00 2001 From: Mathew Paret Date: Mon, 10 Nov 2014 18:47:37 +0530 Subject: [PATCH] Feature #3967 - Added IMDB link to download complete tweet --- .../core/notifications/twitter/main.py | 21 ++++++++++++++----- 1 file changed, 16 insertions(+), 5 deletions(-) diff --git a/couchpotato/core/notifications/twitter/main.py b/couchpotato/core/notifications/twitter/main.py index 0d02191e..fd7d2844 100644 --- a/couchpotato/core/notifications/twitter/main.py +++ b/couchpotato/core/notifications/twitter/main.py @@ -34,11 +34,13 @@ class Twitter(Notification): def notify(self, message = '', data = None, listener = None): if not data: data = {} - + log.debug('Data in notification is %s', data['identifier']) api = Api(self.consumer_key, self.consumer_secret, self.conf('access_token_key'), self.conf('access_token_secret')) direct_message = self.conf('direct_message') direct_message_users = self.conf('screen_name') + + message = '%s%s' % (message,' - http://www.imdb.com/title/' + data['identifier'] if data['identifier'] else '') mention = self.conf('mention') mention_tag = None @@ -59,11 +61,20 @@ class Twitter(Notification): update_message = '[%s] %s' % (self.default_title, message) if len(update_message) > 140: if mention_tag: - api.PostUpdate(update_message[:135 - len(mention_tag)] + ('%s 1/2 ' % mention_tag)) - api.PostUpdate(update_message[135 - len(mention_tag):] + ('%s 2/2 ' % mention_tag)) + if update_message.find(" - http://www.imdb.com/title/") < 141 and update_message.find(" - http://www.imdb.com/title/") > 0: + api.PostUpdate(update_message[:update_message.find(" - http://www.imdb.com/title/") - len(mention_tag)] + ('%s 1/2 ' % mention_tag)) + api.PostUpdate(update_message[update_message.find(" - http://www.imdb.com/title/") - len(mention_tag):] + ('%s 2/2 ' % mention_tag)) + else: + api.PostUpdate(update_message[:135 - len(mention_tag)] + ('%s 1/2 ' % mention_tag)) + api.PostUpdate(update_message[135 - len(mention_tag):] + ('%s 2/2 ' % mention_tag)) else: - api.PostUpdate(update_message[:135] + ' 1/2') - api.PostUpdate(update_message[135:] + ' 2/2') + if update_message.find(" - http://www.imdb.com/title/") < 141 and update_message.find(" - http://www.imdb.com/title/") > 0: + api.PostUpdate(update_message[:update_message.find(" - http://www.imdb.com/title/")] + ' 1/2') + api.PostUpdate(update_message[update_message.find(" - http://www.imdb.com/title/"):] + ' 2/2') + else: + api.PostUpdate(update_message[:135] + ' 1/2') + api.PostUpdate(update_message[135:] + ' 2/2') + else: api.PostUpdate(update_message) except Exception as e: