diff options
author | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-04-07 19:30:29 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-04-07 19:30:29 +0200 |
commit | e948054ea4eb6bbba8091482cca52fd2454322a5 (patch) | |
tree | 1fd281173e460b1f8df1720463f43dc0aa7e031f | |
parent | [SimpleDereferer][SimpleHoster] Update user-agent (3) (diff) | |
download | pyload-e948054ea4eb6bbba8091482cca52fd2454322a5.tar.xz |
New plugin: UserAgentSwitcher
Fix https://github.com/pyload/pyload/issues/1305
-rw-r--r-- | module/plugins/hooks/UserAgentSwitcher.py | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/module/plugins/hooks/UserAgentSwitcher.py b/module/plugins/hooks/UserAgentSwitcher.py new file mode 100644 index 000000000..56c605bac --- /dev/null +++ b/module/plugins/hooks/UserAgentSwitcher.py @@ -0,0 +1,31 @@ +# -*- coding: utf-8 -*- + +import pycurl + +from module.plugins.Hook import Hook + + +class UserAgentSwitcher(Hook): + __name__ = "UserAgentSwitcher" + __type__ = "hook" + __version__ = "0.01" + + __config__ = [("ua", "str", "Custom user-agent string", "")] + + __description__ = """Custom user-agent""" + __license__ = "GPLv3" + __authors__ = [("Walter Purcaro", "vuolter@gmail.com")] + + + interval = 0 #@TODO: Remove in 0.4.10 + + + def setup(self): + self.info = {} #@TODO: Remove in 0.4.10 + + + def downloadPreparing(self, pyfile): + ua = self.getConfig('ua') + if ua: + self.logDebug("Use custom user-agent string: " + ua) + pyfile.plugin.req.http.c.setopt(pycurl.USERAGENT, ua) |