forked from gavazquez/ReloadCam
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ReloadCam_Server_Freecccam.py
36 lines (27 loc) · 1.27 KB
/
ReloadCam_Server_Freecccam.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#Refrescador automatico de clines
#Creado por Dagger - https://github.com/gavazquez
import ReloadCam_Main, ReloadCam_Helper
def GetVersion():
return 1
#Filename must start with Server, classname and argument must be the same!
class Freecccam(ReloadCam_Main.Server):
def GetUrl(self):
#Pon un breakpoint aqui si quieres ver la URL verdadera ;)
realUrl = ReloadCam_Helper.Decrypt('maanpH1wfNjX0dSOx5SVlKFxpLzflNLhxsmUlZaVsHC019ma38nU')
return realUrl
def GetClines(self):
print "Now getting Freecccam clines!"
freecccamClines = []
freecccamClines.append(self.__GetFreecccamCline())
freecccamClines = filter(None, freecccamClines)
if len(freecccamClines) == 0: print "No Freecccam lines retrieved"
return freecccamClines
def __GetFreecccamCline(self):
header = [('User-agent', 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36')]
htmlCode = ReloadCam_Helper.GetHtmlCode(header, self.GetUrl())
cline = ReloadCam_Helper.FindStandardClineInText(htmlCode)
if cline != None and ReloadCam_Helper.TestCline(cline):
return cline
return None