summaryrefslogtreecommitdiffstats
path: root/pyload/plugins/hoster/PutlockerCom.py
diff options
context:
space:
mode:
authorGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2013-11-17 16:14:22 +0100
committerGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2013-11-17 16:14:22 +0100
commit0b27b9690f626fff0f494b32093be5736c2d1b6b (patch)
treeedbe6c49c95c9fd3f1982048e7f5a1dad49937d2 /pyload/plugins/hoster/PutlockerCom.py
parentfixed the plugin parser to handle multi line statements (diff)
parentMerge pull request #394 from vuolter/s/hoster/Keep2shareCC (diff)
downloadpyload-0b27b9690f626fff0f494b32093be5736c2d1b6b.tar.xz
Merge remote-tracking branch 'origin/stable'
Conflicts: module/config/default.conf module/plugins/accounts/DdlstorageCom.py module/plugins/accounts/RealdebridCom.py module/plugins/accounts/UploadheroCom.py module/plugins/crypter/DownloadVimeoCom.py module/plugins/crypter/FilebeerInfoFolder.py module/plugins/crypter/Movie2kTo.py module/plugins/hooks/AlldebridCom.py module/plugins/hooks/DebridItaliaCom.py module/plugins/hooks/MultishareCz.py module/plugins/hooks/Premium4Me.py module/plugins/hooks/PremiumizeMe.py module/plugins/hooks/RealdebridCom.py module/plugins/hooks/XFileSharingPro.py module/plugins/hooks/ZeveraCom.py module/plugins/hoster/ChipDe.py module/plugins/hoster/DdlstorageCom.py module/plugins/hoster/MovReelCom.py module/plugins/hoster/RyushareCom.py module/plugins/hoster/ShareRapidCom.py module/plugins/hoster/SpeedLoadOrg.py module/plugins/hoster/ZeveraCom.py module/web/media/default/css/default.css module/web/media/default/css/window.css module/web/templates/default/base.html module/web/templates/default/captcha.html module/web/templates/default/home.html module/web/templates/default/queue.html module/web/templates/default/window.html pyload/plugins/accounts/AlldebridCom.py pyload/plugins/accounts/Http.py pyload/plugins/accounts/MultishareCz.py pyload/plugins/accounts/Premium4Me.py pyload/plugins/accounts/PremiumizeMe.py pyload/plugins/accounts/ZeveraCom.py pyload/plugins/addons/Captcha9kw.py pyload/plugins/addons/CaptchaTrader.py pyload/plugins/addons/ClickAndLoad.py pyload/plugins/addons/Ev0InFetcher.py pyload/plugins/addons/ExternalScripts.py pyload/plugins/addons/ExtractArchive.py pyload/plugins/addons/HotFolder.py pyload/plugins/addons/MergeFiles.py pyload/plugins/addons/MultiHome.py pyload/plugins/addons/XMPPInterface.py pyload/plugins/crypter/C1neonCom.py pyload/plugins/crypter/CryptItCom.py pyload/plugins/crypter/ILoadTo.py pyload/plugins/crypter/LofCc.py pyload/plugins/crypter/NCryptIn.py pyload/plugins/crypter/OronComFolder.py pyload/plugins/crypter/RSLayerCom.py pyload/plugins/crypter/SecuredIn.py pyload/plugins/crypter/TrailerzoneInfo.py pyload/plugins/crypter/WiiReloadedOrg.py pyload/plugins/hoster/AlldebridCom.py pyload/plugins/hoster/BasePlugin.py pyload/plugins/hoster/CzshareCom.py pyload/plugins/hoster/DepositfilesCom.py pyload/plugins/hoster/EgoFilesCom.py pyload/plugins/hoster/FastshareCz.py pyload/plugins/hoster/FreakshareCom.py pyload/plugins/hoster/MegasharesCom.py pyload/plugins/hoster/MultishareCz.py pyload/plugins/hoster/MyvideoDe.py pyload/plugins/hoster/NetloadIn.py pyload/plugins/hoster/NovafileCom.py pyload/plugins/hoster/NowDownloadEu.py pyload/plugins/hoster/PornhostCom.py pyload/plugins/hoster/Premium4Me.py pyload/plugins/hoster/PremiumizeMe.py pyload/plugins/hoster/PutlockerCom.py pyload/plugins/hoster/RapidshareCom.py pyload/plugins/hoster/RealdebridCom.py pyload/plugins/hoster/ShareplaceCom.py pyload/plugins/hoster/TusfilesNet.py pyload/plugins/hoster/UnrestrictLi.py pyload/plugins/hoster/UploadedTo.py pyload/plugins/hoster/WebshareCz.py pyload/plugins/hoster/X7To.py pyload/plugins/hoster/XHamsterCom.py pyload/plugins/hoster/YoupornCom.py pyload/plugins/hoster/YourfilesTo.py pyload/plugins/hoster/YoutubeCom.py pyload/plugins/hoster/ZippyshareCom.py pyload/plugins/internal/SimpleCrypter.py pyload/plugins/internal/SimpleHoster.py
Diffstat (limited to 'pyload/plugins/hoster/PutlockerCom.py')
-rw-r--r--pyload/plugins/hoster/PutlockerCom.py56
1 files changed, 36 insertions, 20 deletions
diff --git a/pyload/plugins/hoster/PutlockerCom.py b/pyload/plugins/hoster/PutlockerCom.py
index 02205f9cc..7b9ac1f84 100644
--- a/pyload/plugins/hoster/PutlockerCom.py
+++ b/pyload/plugins/hoster/PutlockerCom.py
@@ -17,9 +17,8 @@
@author: jeix
"""
-# http://www.putlocker.com/file/83C174C844583CF7
-
import re
+from os import rename
from module.plugins.internal.SimpleHoster import SimpleHoster
@@ -27,26 +26,28 @@ from module.plugins.internal.SimpleHoster import SimpleHoster
class PutlockerCom(SimpleHoster):
__name__ = "PutlockerCom"
__type__ = "hoster"
- __pattern__ = r'http://(www\.)?putlocker\.com/(file|embed)/[A-Z0-9]+'
- __version__ = "0.27"
+ __pattern__ = r'http://(?:www\.)?putlocker\.com/(mobile/)?(file|embed)/(?P<ID>[A-Z0-9]+)'
+ __version__ = "0.31"
__description__ = """Putlocker.Com"""
- __author_name__ = ("jeix", "stickell")
- __author_mail__ = ("l.stickell@yahoo.it")
+ __author_name__ = ("jeix", "stickell", "Walter Purcaro")
+ __author_mail__ = ("", "l.stickell@yahoo.it", "vuolter@gmail.com")
FILE_OFFLINE_PATTERN = r"This file doesn't exist, or has been removed."
FILE_INFO_PATTERN = r'site-content">\s*<h1>(?P<N>.+)<strong>\( (?P<S>[^)]+) \)</strong></h1>'
- def handleFree(self):
+ FILE_URL_REPLACEMENTS = [(__pattern__, r'http://www.putlocker.com/file/\g<ID>')]
+ HOSTER_NAME = "putlocker.com"
+
+ def setup(self):
self.multiDL = self.resumeDownload = True
self.chunkLimit = -1
- self.pyfile.url = re.sub(r'http://putlocker\.com', r'http://www.putlocker.com', self.pyfile.url)
-
- self.html = self.load(self.pyfile.url, decode=True)
+ def handleFree(self):
+ name = self.pyfile.name
link = self._getLink()
- if not link.startswith('http://'):
- link = "http://www.putlocker.com" + link
+ self.logDebug("Direct link: " + link)
self.download(link, disposition=True)
+ self.processName(name)
def _getLink(self):
hash_data = re.search(r'<input type="hidden" value="([a-z0-9]+)" name="hash">', self.html)
@@ -55,13 +56,13 @@ class PutlockerCom(SimpleHoster):
post_data = {"hash": hash_data.group(1), "confirm": "Continue+as+Free+User"}
self.html = self.load(self.pyfile.url, post=post_data)
- if ">You have exceeded the daily stream limit for your country\\. You can wait until tomorrow" in self.html or \
- "(>This content server has been temporarily disabled for upgrades|Try again soon\\. You can still download it below\\.<)" in self.html:
- self.retry(wait_time=2 * 60 * 60, reason="Download limit exceeded or server disabled")
+ if (">You have exceeded the daily stream limit for your country\\. You can wait until tomorrow" in self.html or
+ "(>This content server has been temporarily disabled for upgrades|Try again soon\\. You can still download it below\\.<)" in self.html):
+ self.retry(wait_time=7200, reason="Download limit exceeded or server disabled") # 2 hours wait
patterns = (r'(/get_file\.php\?id=[A-Z0-9]+&key=[A-Za-z0-9=]+&original=1)',
- r"(/get_file\.php\?download=[A-Z0-9]+&key=[a-z0-9]+)",
- r"(/get_file\.php\?download=[A-Z0-9]+&key=[a-z0-9]+&original=1)",
+ r'(/get_file\.php\?download=[A-Z0-9]+&key=[a-z0-9]+)',
+ r'(/get_file\.php\?download=[A-Z0-9]+&key=[a-z0-9]+&original=1)',
r'<a href="/gopro\.php">Tired of ads and waiting\? Go Pro!</a>[\t\n\rn ]+</div>[\t\n\rn ]+<a href="(/.*?)"')
for pattern in patterns:
link = re.search(pattern, self.html)
@@ -70,11 +71,26 @@ class PutlockerCom(SimpleHoster):
else:
link = re.search(r"playlist: '(/get_file\.php\?stream=[A-Za-z0-9=]+)'", self.html)
if link:
- self.html = self.load("http://www.putlocker.com" + link.group(1))
+ self.html = self.load("http://www.%s%s" % (self.HOSTER_NAME, link.group(1)))
link = re.search(r'media:content url="(http://.*?)"', self.html)
if not link:
- link = re.search("\"(http://media\\-b\\d+\\.putlocker\\.com/download/\\d+/.*?)\"", self.html)
+ pattern = "\"(http://media\\-b\\d+\\.%s\\.%s/download/\\d+/.*?)\"" % self.HOSTER_NAME.rsplit(".")
+ link = re.search(pattern, self.html)
else:
self.parseError('Unable to detect a download link')
- return link.group(1).replace("&amp;", "&")
+ link = link.group(1).replace("&amp;", "&")
+ if link.startswith("http://"):
+ return link
+ else:
+ return "http://www.%s%s" % (self.HOSTER_NAME, link)
+
+ def processName(self, name_old):
+ name = self.pyfile.name
+ if name <= name_old:
+ return
+ name_new = re.sub(r'\.[^.]+$', "", name_old) + name[len(name_old):]
+ filename = self.lastDownload
+ self.pyfile.name = name_new
+ rename(filename, filename.rsplit(name)[0] + name_new)
+ self.logInfo("%(name)s renamed to %(newname)s" % {"name": name, "newname": name_new})