Discuz 论坛评论回复代码

         本来想着刷下积分,换点礼品,结果居然好有限制。附上代码。更新代码,增加摇一摇赚取浪花的功能。找了台服务器,摇浪花啦。

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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
#-\*-coding:utf-8-\*-
import urllib2, urllib, cookielib
import re
import getpass
import sqlite3
import urlparse
import random
import time
import PyV8
from bs4 import BeautifulSoup
class Discuz:
    def \_\_init\_\_(self,user,pwd,args):
        self.username = user
        self.password = pwd
        self.args = args
        self.regex = {
            'loginreg':'<input\\s\*type="hidden"\\s\*name="formhash"\\s\*value="(\[\\w\\W\]+?)"\\s\*\\/>',
            #input type="hidden" name="formhash" value="7f420ac4"
            'replyreg':'<input\\s\*type="hidden"\\s\*name="formhash"\\s\*value="(\[\\w\\W\]+?)"\\s\*\\/>',
            'tidreg': '<tbody\\s\*id="normalthread\_\\d+">\[\\s\\S\]+?<span\\s\*id="thread\_(\\d+)">',
            'subform':'<a href="forum.php\\?mod=forumdisplay&fid=\\d+">\\S+</a>',
            'topidreg':'<a href="forum.php\\?mod=viewthread&tid=\\d+&extra=page%3D1" onclick="atarget\\(this\\)" class="s xst">\\S+</a>'
        }
        self.subform=\['OpenStack',u'云服务',u'云管理','hadoop','storm','spark'\]
        self.conn = None
        self.cur = None
        self.islogin = False
        self.login()
        self.InitDB()

    def login(self):
        try:
            loginPage = urllib2.urlopen(self.args\['loginurl'\]).read()
            print 'start login...'
            cj = cookielib.CookieJar()
            opener = urllib2.build\_opener(urllib2.HTTPCookieProcessor(cj))
            user\_agent = 'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Mozilla/4.0 \\
                    (compatible; MSIE 6.0; Windows NT 5.1; SV1) ; .NET CLR 2.0.507'
            opener.addheaders = \[('User-agent', user\_agent)\]
            urllib2.install\_opener(opener)
            logindata = urllib.urlencode({
                'cookietime':    2592000,
               # 'formhash': formhash,
                'loginfield':'username',
                'username':    self.username,
                'password':    self.password,
                'quickforward':    'yes',
                'fastloginfield':'username',
                'handlekey':'ls',
                'referer': self.args\['referer'\]
                })

            request = urllib2.Request(self.args\['loginsubmiturl'\],logindata)
            response = urllib2.urlopen(request)
            self.islogin = True
            print 'login success...'
        except Exception,e:
                print 'loggin error: %s' % e

    def PostReply(self, fid, tid, topicUrl,content):
        try:
            if self.islogin:
                temp=self.args\['replysubmiturl'\]
                replysubmiturl = temp %(fid,tid)
                response = urllib2.urlopen(topicUrl)
                content11 = response.read()
               # print content11
                # update url
                url=self.getNewUrlFromJs(content11);
                newTopicUrl= self.args\['redirectBaseUrl'\]+url
                response = urllib2.urlopen(newTopicUrl)
                content11 = response.read()
                formhashs = re.search(self.regex\['replyreg'\], content11)
                formhash= formhashs.group(1)
                print formhash
                replydata = urllib.urlencode({
                    'formhash': formhash,
                    'message': content,
                    'subject': '',
                    'usesig':'1'
                })
                request = urllib2.Request(replysubmiturl,replydata)
                response = urllib2.urlopen(request)
                print 'reply success for \[%s\]' % topicUrl
            else:
                print 'user not login'
        except Exception, e:
                print 'reply error: %s' % e

    def GetSubForms(self):
        if self.islogin:
            fidurl = self.args\['fidurl'\]
            response = urllib2.urlopen(fidurl)
            content = response.read()
            soup = BeautifulSoup(content,"html.parser")
            h1userSoupList=soup.findAll(name="a", attrs={"href":re.compile(r"forum.php\\?mod=forumdisplay&fid=\\d+")})
            subformDicts={}
            for subform in h1userSoupList:
                if subform.get\_text() in self.subform:
                   # subforms.append(self.args\['baseUrl'\]+subform\["href"\])
                    url=self.args\['baseUrl'\]+subform\["href"\]
                    result=urlparse.urlparse(url)
                    params=urlparse.parse\_qs(result.query,True)
                    tag= params\['fid'\]\[0\]
                    subformDicts\[tag\]=url
            return subformDicts
        else:
            print 'Error Please Login...'

    def getNewUrlFromJs(self,js):
       js=js\[31:-9\]
       for st in \['window','location',"'assign'","'href'","'replace'"\]:
            equal=re.findall('\[\_A-Za-z0-9 =\]+%s;'%st,js)
            if equal==\[\]:
                continue
            else:
               equal=equal\[0\]
               var=equal.split('=')\[0\].strip()
               js=js.replace(equal,'')
               js=js.replace(var,st)
               js=js.replace("\['%s'\]"%st.strip("'"),'.%s'%st.strip("'"))
       if re.findall('window\\.href=.+',js)!=\[\]:
           js=js.replace(re.findall('window\\.href=.+',js)\[0\],'')
       js=js.replace('location.href=','').replace('location.replace','').replace('location.assign','')
       ctxt2 = PyV8.JSContext()
       ctxt2.enter()
       return ctxt2.eval(js)

    def haveAGoodLuck(self):
        luckurl='http://bbs.iop365.com/iop//plugin.php?id=yinxingfei\_zzza:yinxingfei\_zzza\_hall&yjjs=yes'
        response = urllib2.urlopen(luckurl)
        content = response.read()
        formhashs = re.search(self.regex\['replyreg'\], content)
        formhash= formhashs.group(1)
        soup = BeautifulSoup(content,"html.parser")
        submitUrl2='http://bbs.iop365.com/iop//plugin.php?id=yinxingfei\_zzza:yinxingfei\_zzza\_post'
        replydata = urllib.urlencode({
                    'formhash': formhash
                })
        request = urllib2.Request(submitUrl2,replydata)
        response = urllib2.urlopen(request)

    def visitUser(self):
        baseUrl='http://bbs.iop365.com/iop/?%s'
        for i in range(1,10):
            randNum=random.randint(1, 200)
            visitUrl=baseUrl %(randNum)
            response = urllib2.urlopen(visitUrl)
            content = response.read()
            print visitUrl
    def InitDB(self):
        self.conn = sqlite3.connect('data.db')
        self.cur = self.conn.cursor()
        sql = '''create table if not exists post (
            fid text,
            tid text,
            replied integer)'''
        self.cur.execute(sql)
        self.conn.commit()

    def getTopicList(self,sunFormUrl):
         topicDis={}
         if self.islogin:
            fidurl = sunFormUrl
            response = urllib2.urlopen(fidurl)
            content = response.read()
            soup = BeautifulSoup(content,"html.parser")
            h1userSoupList=soup.findAll(name="a", attrs={"href": re.compile(r"forum.php\\?mod=viewthread\\&"),"onclick":"atarget(this)"})
            for topic in h1userSoupList:
                 #topics.append(self.args\['baseUrl'\]+topic\["href"\])
                 url=self.args\['baseUrl'\]+topic\["href"\]
                 result=urlparse.urlparse(url)
                 params=urlparse.parse\_qs(result.query,True)
                 topicDis\[params\['tid'\]\[0\]\]=url
            return topicDis
         else:
             print 'user doest not login'

if \_\_name\_\_ == '\_\_main\_\_':
    #username = raw\_input('username:').strip()
    #password = getpass.getpass('password:').strip()
    args = {
            'loginurl': 'http://bbs.iop365.com/forum.php',
            'loginsubmiturl': 'http://bbs.iop365.com/iop/member.php?mod=logging&action=login&loginsubmit=yes&infloat=yes&lssubmit=yes&inajax=1',
            'fidurl': 'http://bbs.iop365.com/iop/forum.php',
            'tidurl': 'http://bbs.iop365.com/thread-%s-1-1.html',
            'replysubmiturl': 'http://bbs.iop365.com/iop//forum.php?mod=post&action=reply&fid=%s&tid=%s&extra=&replysubmit=yes&infloat=yes&handlekey=fastpost&inajax=1',
            'referer':'http://bbs.iop365.com/forum.php' ,
            'baseUrl':'http://bbs.iop365.com/iop/',
             'redirectBaseUrl': 'http://bbs.iop365.com/'}
    userInfo={'wangdk':'\*\*\*\*'}
    for (username,password) in userInfo.items():
        dz = Discuz(username, password,args)
        subforms = dz.GetSubForms()
        dz.visitUser()
        topicNum=0
        allTopics={}
        for fid in subforms:
          topics=dz.getTopicList(subforms\[fid\])
          for tid in topics:
               topicNum=topicNum+1
               allTopics\[topicNum\]={'fid':fid,'tid':tid,'topicUrl':topics\[tid\]}
        randNum=random.randint(1, topicNum)
        print  'good luck time=%s',time.strftime( "%Y-%m-%d %H:%M:%S", time.localtime() )
        dz.PostReply(allTopics\[randNum\]\['fid'\],allTopics\[randNum\]\['tid'\],allTopics\[randNum\]\['topicUrl'\],'guanshui,haha')
        print 'topicUrl %s',allTopics\[randNum\]\['topicUrl'\]
        dz.haveAGoodLuck()