summaryrefslogtreecommitdiffstats
path: root/module/plugins/hoster/VidPlayNet.py
diff options
context:
space:
mode:
authorGravatar t4skforce <t4skforce@t4skforce-m11x.neumair.net> 2014-05-05 13:57:20 +0200
committerGravatar Stefano <l.stickell@yahoo.it> 2014-05-05 13:57:20 +0200
commitffb8767a7daf56ff52f06da29972736154f1f493 (patch)
tree4ea7c513335332d07cafe64cdddc0bab7c3a95e8 /module/plugins/hoster/VidPlayNet.py
parentNew hoster: MegaFilesSe (diff)
downloadpyload-ffb8767a7daf56ff52f06da29972736154f1f493.tar.xz
New hoster: VidPlayNet
Merges #602
Diffstat (limited to 'module/plugins/hoster/VidPlayNet.py')
-rw-r--r--module/plugins/hoster/VidPlayNet.py25
1 files changed, 25 insertions, 0 deletions
diff --git a/module/plugins/hoster/VidPlayNet.py b/module/plugins/hoster/VidPlayNet.py
new file mode 100644
index 000000000..ade416750
--- /dev/null
+++ b/module/plugins/hoster/VidPlayNet.py
@@ -0,0 +1,25 @@
+# -*- coding: utf-8 -*-
+
+# Test links:
+# BigBuckBunny_320x180.mp4 - 61.7 Mb - http://vidplay.net/38lkev0h3jv0
+
+from module.plugins.hoster.XFileSharingPro import XFileSharingPro, create_getInfo
+
+
+class VidPlayNet(XFileSharingPro):
+ __name__ = "VidPlayNet"
+ __type__ = "hoster"
+ __pattern__ = r'https?://(?:www\.)?vidplay\.net/\w{12}'
+ __version__ = "0.01"
+ __description__ = """VidPlay.net hoster plugin"""
+ __author_name__ = "t4skforce"
+ __author_mail__ = "t4skforce1337[AT]gmail[DOT]com"
+
+ HOSTER_NAME = "vidplay.net"
+
+ FILE_OFFLINE_PATTERN = r'<b>File Not Found</b><br>\s*<br>'
+ FILE_NAME_PATTERN = r'<b>Password:</b></div>\s*<h[1-6]>(?P<N>[^<]+)</h[1-6]>'
+ DIRECT_LINK_PATTERN = r'(http://([^/]*?%s|\d+\.\d+\.\d+\.\d+)(:\d+)?(/d/|(?:/files)?/\d+/\w+/)[^"\'<&]+)' % HOSTER_NAME
+
+
+getInfo = create_getInfo(VidPlayNet)