python2.7下同步华为云照片的爬虫程序实现

时间:2021-07-23 16:07:47

1、背景

随着华为手机的销量加大,华为云的捆绑服务使用量也越来越广泛,华为云支持自动同步照片、通讯录、记事本等,用着确实也挺方便的,云服务带来方便的同时,也带来了数据管理风险。
华为目前只提供一个www.hicloud.com网站来管理数据,不提供windows平台的同步工具,数据管理和同步非常不方便。

2、功能描述

进过几天的摸索,目前的代码实现以下功能:
1、自动调用登录网址,并显示验证码,等待手动输入验证码;
2、验证码或者密码出错,自动重新调用登录网址,最多3次出错机会;
3、自动进入相册文件夹,按照相册列表获取相片、视频的真实地址;
4、方案1:把文件真实地址保存到文本文件中,然后手动调用迅雷等工具进行批量下载;
    方案2:建立本地文件夹,单线程的逐个将服务器上的相片、视频等文件自动同步到本地。
    方案3:优化方案2,采取多线程的方式获取文件。

3、代码说明

A、登录过程

访问http://www.hicloud.com,系统会自动执行多步跳转
    1、先直接在页面中refresh跳转到http://www.hicloud.com/others/login.action
    2、再直接redirect到https://hwid1.vmall.com/casserver/logout?service=https://www.hicloud.com:443/logout
    3、再redirect到https://hwid1.vmall.com/casserver/remoteLogin?service=https://www.hicloud.com:443/others/login.action&loginChannel=1000002&reqClientType=1&loginUrl=https://hwid1.vmall.com/oauth2/account/login?reqClientType=1&lang=zh-cn&adUrl=https://www.hicloud.com:443/others/show_advert.action
    4、再redirect到https://hwid1.vmall.com/oauth2/account/login?reqClientType=1&validated=true&service=https://www.hicloud.com:443/others/login.action&loginChannel=1000002&reqClientType=1&adUrl=https://www.hicloud.com:443/others/show_advert.action&lang=zh-cn
    这个链接会刷新出来登录界面,本程序直接使用链接4进行登陆。
 (啃爹吧,搞这么多跳转,大概华为管理员以为这样就可以防爬虫?嗯,一开始在firefox里抓报文,跳转给报文跟踪增加了很多难度,后来祭出Fiddler4,搞定!!!)。
    5、在链接4中包含一个刷新验证码的request: 
   https://hwid1.vmall.com/casserver/randomcode?randomCodeType=emui4_login&_t=1462786575782
   其中参数t是系统本地时间
    6、接下来调用https://hwid1.vmall.com/casserver/remoteLogin进行post提交
    7、登录成功后会再次执行3次redirect,分别是:
    https://www.hicloud.com:443/others/login.action?lang=zh-cn&ticket=1ST-157502-OV1212126aV9BcM9Sh2Dpe-cas
    https://www.hicloud.com:443/others/login.action?lang=zh-cn
    https://www.hicloud.com:443/home
    若是登录失败(下面是验证码错误时的跳转链接),会redirect到链接4,因此本文直接使用链接4进行登录。
    https://hwid1.vmall.com/oauth2/account/login?validated=true&errorMessage=random_code_error|user_pwd_continue_error&service=https%3A%2F%2Fwww.hicloud.com%3A443%2Fothers%2Flogin.action%3Flang%3Dzh-cn&loginChannel=1000002&reqClientType=1&adUrl=https%3A%2F%2Fwww.hicloud.com%3A443%2Fothers%2Fshow_advert.action%3Flang%3Dzh-cn&lang=zh-cn&viewT

B、函数说明

1、hw.enableCookies()
主要是设置全局的urllib2的一些属性,譬如打开调试开关,打开cookie管理,注意全局二字,这是urllib2的特性;

2、hw.getLoginPage()
主要实现访问前文的链接4,并获取应答报文,注意应答报文在后面将进行处理。
可以得到密码校验submit时需要的一些参数。

3、hw.getRadomCode()
调用服务器端验证码算法生成验证码图片,并调用系统shell显示图片。
显示图片后,阻塞进程,等待用户手动输入验证码(曾经想过调用ocr包进行字符识别,不过发现网上几个公开的包,在识别华为验证码时都基本不好用,遂放弃)。

4、hw.genLoginData(content)
基于2、3的返回,拼装验证密码submit的post字符串

5、hw.checkUserPwd(postdata)
正式开始调用验证密码的链接进行密码校验;
从校验成功的应答报文中使用正则表达式获取CSRFToken,这个值很关键,后续在很多地方用到;

6、hw.getAlbumPage()  
直接访问华为云的照片主页https://www.hicloud.com:443/album
其实正常情况下,登录成功后,用户需要点击好几个动作才能打开照片主页,后台相当于有多次交互。写爬虫的话,就略过这些无关紧要的访问了。

7、hw.getAlbumList()
相册主页有两种展示方式:一种按时间分组,一种按相册名分组,我们采取后一种方式。
所以先获取相册列表,注意这个交互,服务器端返回的是json应答报文。

8、hw.getFileList(page,'albumList','albumId')
依据步骤7返回的json报文内容,循环获取各相册里相册文件的地址;
这个交互返回还是json报文,需要说明是这个json报文还是gzip压缩的,而且发现Fiddler4竟然支持自动解压。
(在测试的时候,通过Fiddler代理收到的应答报文已经被自动解压了,正式部署运行时发现报错……不过在写本文时,又发现Fiddler是有开关来控制是否自动对gzip报文解压,Fiddler很强大,挖个坑后面再写Fiddler怎么用)

9、hw.getFileList(page,'ownShareList','shareId')
这个跟步骤8是一样的功能,主要是华为云里头比较搞,针对微信单独设置了一个相册目录,其json节点是ownShareList,步骤8中是albumList。

8,9两个函数中在下载文件时有三种方案,需要选择那个方案对应打开对应代码注释行:
#方案1:保存下载地址到文本文件中,但不下载文件
#icurrentnum += self.saveFileList2Txt(each[childkey],page,icurrentnum)
#方案2:单线程下载文件到本地
#icurrentnum += self.downFileList(each[childkey],page)
#方案3:多线程下载文件到本地
#unicode码格式
#print each[childkey].encode('gbk')
icurrentnum += self.downFileListMultiThread(each[childkey],page)

程序说明至此结束,具体大家看代码吧,都不算复杂。
另外得说明异常抛出这块,我并没有去充分考虑和完善,但可以确定代码肯定是好用的。
以本人举例,使用华为半年,在服务器上总共存了2536个文件,一共9.24G数据。在2016-5-14日晚,通过家里的20M联通宽带全部同步到本地,具体耗时有点忘了,不过程序运行并没有异常退出,不得不表扬python的稳定性。
不过不保证华为官方看到这个之后,不去调整他的后台逻辑,但是思路基本问题不大。
目前来看在防爬虫这块,淘宝是做的相对较好了,主要是逻辑变化比较快,其次是复杂。

4、总结

a、学习python以及爬虫时间都不长,断断续续加起来不到1个月的样子,借鉴了很多网络资料,有艰辛也有收获。
b、python确实很强大,入门难度不高,网络资料非常丰富,官方在官方类的管理上,做得相当不错,利用pip安装挺简单也挺方便。
c、python的官方类都有是有源码(目录在c:\python27\lib下,c:\python是我的python安装目录),遇到把握不准的问题,其实看源码是最好的办法,网上的资料也有很多缪误。
不需要完全看懂,一是学习本身需要过程,二是源码太长,类太多。可以以点带面,慢慢提高,而且看源码还可以学习源码中的一些写法。
d、另外,不得不吐槽python的字符编码处理这块,坑太多了。
曾经在encode,decode这块困扰了近一个礼拜,到目前算是基本理解、会用吧。

5、源码

synchuaweiphoto.py

 # -*- coding=utf-8 -*-
__author__='zhongtang' import urllib
import urllib2
import cookielib
import time,datetime
from PIL import Image
from lxml import etree
from ordereddict import OrderedDict
import re
import json
import htmltool
import os
import threading
import gzip
import StringIO
import requests class HuaWei:
#华为云服务登录
'''
访问http://www.hicloud.com 执行多步跳转
1、先直接在页面中refresh跳转到http://www.hicloud.com/others/login.action
2、再直接redirect到https://hwid1.vmall.com/casserver/logout?service=https://www.hicloud.com:443/logout
3、再redirect到https://hwid1.vmall.com/casserver/remoteLogin?service=https://www.hicloud.com:443/others/login.action&loginChannel=1000002&reqClientType=1&loginUrl=https://hwid1.vmall.com/oauth2/account/login?reqClientType=1&lang=zh-cn&adUrl=https://www.hicloud.com:443/others/show_advert.action
4、再redirect到https://hwid1.vmall.com/oauth2/account/login?reqClientType=1&validated=true&service=https://www.hicloud.com:443/others/login.action&loginChannel=1000002&reqClientType=1&adUrl=https://www.hicloud.com:443/others/show_advert.action&lang=zh-cn
这个链接会刷新出来登录界面,本程序直接使用链接4进行登陆。
5、在链接4中包含一个刷新验证码的request: https://hwid1.vmall.com/casserver/randomcode?randomCodeType=emui4_login&_t=1462786575782
6、接下来调用https://hwid1.vmall.com/casserver/remoteLogin进行post提交
7、登录成功后会再次执行3次redirect,分别是:
https://www.hicloud.com:443/others/login.action?lang=zh-cn&ticket=1ST-157502-OVRaMo6aV232229Sh2Dpe-cas
https://www.hicloud.com:443/others/login.action?lang=zh-cn
https://www.hicloud.com:443/home
若是登录失败,会redirect到链接4,因此本文直接使用链接4进行登录。
https://hwid1.vmall.com/oauth2/account/login?validated=true&errorMessage=random_code_error|user_pwd_continue_error&service=https%3A%2F%2Fwww.hicloud.com%3A443%2Fothers%2Flogin.action%3Flang%3Dzh-cn&loginChannel=1000002&reqClientType=1&adUrl=https%3A%2F%2Fwww.hicloud.com%3A443%2Fothers%2Fshow_advert.action%3Flang%3Dzh-cn&lang=zh-cn&viewT
''' def __init__(self):
self.username='username@yeah.net' #用户名
self.passwd='userpassword' #用户密码
self.authcode='' #验证码
self.baseUrl='https://hwid1.vmall.com'
self.loginUrl=self.baseUrl+'/oauth2/account/login?reqClientType=1&validated=true&service=https://www.hicloud.com:443/others/login.action&loginChannel=1000002&reqClientType=1&adUrl=https://www.hicloud.com:443/others/show_advert.action&lang=zh-cn'
#self.loginUrl='https://www.hicloud.com'
self.randomUrl=self.baseUrl+'/casserver/randomcode'
self.checkpwdUrl=self.baseUrl+'/casserver/remoteLogin'
self.successUrl='https://www.hicloud.com:443/album'
self.getalbumsUrl= 'https://www.hicloud.com/album/getCloudAlbums.action'
self.getalbumfileUrl = 'https://www.hicloud.com/album/getCloudFiles.action'
self.loginHeaders = {
'User-Agent' : 'Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',
'Connection' : 'keep-alive'
}
self.CSRFToken=''
self.OnceMaxFile=100 #单次最大获取文件数量
self.FileList={} #照片列表
self.ht=htmltool.htmltool()
self.curPath= self.ht.getPyFileDir()
self.FileNum=0 #设置urllib2 cookie
def enableCookies(self):
#建立一个cookies 容器
self.cookies = cookielib.CookieJar()
#将一个cookies容器和一个HTTP的cookie的处理器绑定
cookieHandler = urllib2.HTTPCookieProcessor(self.cookies)
#创建一个opener,设置一个handler用于处理http的url打开
#self.opener = urllib2.build_opener(self.handler)
httpHandler=urllib2.HTTPHandler(debuglevel=1)
httpsHandler=urllib2.HTTPSHandler(debuglevel=1)
self.opener = urllib2.build_opener(cookieHandler,httpHandler,httpsHandler)
#安装opener,此后调用urlopen()时会使用安装过的opener对象
urllib2.install_opener(self.opener) #获取当前时间
def getJstime(self):
itime= int(time.time() * 1000)
return str(itime) #获取验证码
def getRadomCode(self,repeat=2):
'''
-- js
function chgRandomCode(ImgObj, randomCodeImgSrc) {
ImgObj.src = randomCodeImgSrc+"?randomCodeType=emui4_login&_t=" + new Date().getTime();
};
-- http
GET /casserver/randomcode?randomCodeType=emui4_login&_t=1462786575782 HTTP/1.1
'''
data =''
ostime=self.getJstime()
filename=self.curPath+'\\'+ostime+'.png'
url= self.randomUrl+"?randomCodeType=emui4_login&_t="+ostime
#print url
try:
request = urllib2.Request(url,headers=self.loginHeaders)
response = urllib2.urlopen(request)
data = response.read()
except :
time.sleep(5)
print u'保存验证码图片[%s]出错,尝试:\n[%s]' %(url,2-repeat)
if repeat>0:
return self.getRadomCode(repeat-1)
if len(data)<= 0 : return
f = open(filename, 'wb')
f.write(data)
#print u"保存图片:",fileName
f.close()
im = Image.open(filename)
im.show()
self.authcode=''
self.authcode = raw_input(u'请输入4位验证码:')
#删除验证码文件
os.remove(filename)
return def genLoginData(self,content):
'''
1<input type="hidden" id="form_submit" name="submit" value="true">
2<input type="hidden" id="form_loginUrl" name="loginUrl" value="https://hwid1.vmall.com/oauth2/account/login" />
3<input type="hidden" id="form_service" name="service" value="https://www.hicloud.com:443/others/login.action?lang=zh-cn" />
4<input type="hidden" id="form_loginChannel" name="loginChannel" value="1000002" />
5<input type="hidden" id="form_reqClientType" name="reqClientType" value="1" />
6<input type="hidden" id="form_deviceID" name="deviceID" value="" />
7<input type="hidden" id="form_adUrl" name="adUrl" value="https://www.hicloud.com:443/others/show_advert.action?lang=zh-cn" />
8<input type="hidden" id="form_lang" name="lang" value="zh-cn" />
9<input type="hidden" id="form_inviterUserID" name="inviterUserID" value="" />
10<input type="hidden" id="form_inviter" name="inviter" value="" />
11<input type="hidden" id="form_viewType" name="viewType" value="0" />
12<input type="hidden" id="form_quickAuth" name="quickAuth" value="" />
<input type="hidden" id="form_loginUrlForBind" value="https://hwid1.vmall.com/oauth2/portal/thirdAccountBindByPhoneForPCWeb.jsp?themeName=cloudTheme" />
'''
tree = etree.HTML(content)
form= tree.xpath('//div[@class="login-box"]')[0]
#print len(form)
params=OrderedDict()
params['submit']=form.xpath('//*[@name="submit"]/@value')[0] #
params['loginUrl']= form.xpath('//*[@name="loginUrl"]/@value')[0]
params['service'] = form.xpath('//*[@name="service"]/@value')[0]
params['loginChannel']= form.xpath('//*[@name="loginChannel"]/@value')[0]
params['reqClientType'] = form.xpath('//*[@name="reqClientType"]/@value')[0]
params['deviceID']= form.xpath('//*[@name="deviceID"]/@value')[0]#
params['adUrl']= form.xpath('//*[@name="adUrl"]/@value')[0]
params['lang'] = form.xpath('//*[@name="lang"]/@value')[0]
params['inviterUserID']= form.xpath('//*[@name="inviterUserID"]/@value')[0]
params['inviter'] = form.xpath('//*[@name="inviter"]/@value')[0]
params['viewType']= form.xpath('//*[@name="viewType"]/@value')[0]#
params['quickAuth'] = form.xpath('//*[@name="quickAuth"]/@value')[0]
params['userAccount']= self.username
params['password'] = self.passwd
params['authcode'] = self.authcode
params=urllib.urlencode(params)
return params def getLoginPage(self):
request = urllib2.Request(self.loginUrl,headers=self.loginHeaders)
response = urllib2.urlopen(request)
page =''
page= response.read()
redUrl=response.geturl()
return page.decode('utf-8') def checkUserPwd(self,postdata):
'''
<input type="hidden" value="" id="userHeadPic">
<input type="hidden" value="1" id="activeUserState"/>
<input type="hidden" value='[{"deviceType":0,"deviceID":"1231231231212312312312","terminalType":"huawei mt7-tl00","deviceAliasName":"HUAWEI MT7-TL00"}]' id="deviceList" />
<input type="hidden" value='www.hicloud.com' id="server" />
<input type="hidden" value='1' id="biFlag" />
<input type="hidden" value='https://dc.hicloud.com' id="biUrl" />
<script>
var CSRFToken = "9b64dcad38d269147f2c27dc12171e60aade2a22316de213";
var accountType = "1";
var accountTypeLh = "4";
</script>
'''
self.CSRFToken=''
pattern = re.compile('CSRFToken = "(.*?)"',re.S)
#保存CSRFToken
content = re.search(pattern,page)
if content :
self.CSRFToken = content.group(1)
return ''
else:
return '' #打开相册页,获取CSRFToken字符,这个是关键字,在后续报文都将用到。
def getAlbumPage(self):
request=urllib2.Request(self.successUrl,headers=self.loginHeaders)
response = urllib2.urlopen(request)
rheader = response.info()
page= response.read()
redUrl=response.geturl()
return self.getCSRFToken(page.decode('utf-8')) """
Description : 将网页图片保存本地
@param imgUrl : 待保存图片URL
@param imgName : 待保存图片名称
@return 无
"""
def saveImage( self,imgUrl,imgName ="default.jpg" ):
#使用requests的get方法直接下载文件,注意因为url是https,所以加了verify=False
response = requests.get(imgUrl, stream=True,verify=False)
image = response.content
filename= imgName
print("保存文件"+filename+"\n")
try:
with open(filename ,"wb") as jpg:
jpg.write( image)
return
except IOError:
print("IO Error\n")
return
finally:
jpg.close """
Description : 开启多线程执行下载任务,注意没有限制线程数
@param filelist:待下载图片URL列表
@return 无
"""
def downFileMultiThread( self,urllist,namelist ):
task_threads=[] #存储线程
count=1
i = 0
for i in range(0,len(urllist)):
fileurl = urllist[i]
filename= namelist[i]
t = threading.Thread(target=self.saveImage,args=(fileurl,filename))
count = count+1
task_threads.append(t)
for task in task_threads:
task.start()
for task in task_threads:
task.join() #多线程下载相册照片到目录 ,不同相册保存到不同的目录
def downFileListMultiThread(self,dirname,hjsondata):
if len(hjsondata)<= 0 : return 0
hjson2 = {}
hjson2 = json.loads(hjsondata)
#新建目录,并切换到目录
self.ht.mkdir(dirname)
i = 0
urllist=[]
namelist=[]
if hjson2.has_key("fileList"):
for each in hjson2["fileList"]:
urllist.append(hjson2["fileList"][i]["fileUrl"].encode('gbk'))
namelist.append(hjson2["fileList"][i]["fileName"].encode('gbk'))
self.FileNum += 1
i += 1
#每25个文件开始并发下载,并清空数组,或者最后一组
if i%25==0 or i == len(hjson2["fileList"]):
self.downFileMultiThread(urllist,namelist)
urllist=[]
namelist=[]
return i #下载相册照片到目录 ,不同相册保存到不同的目录
def downFileList(self,dirname,hjsondata):
if len(hjsondata)<= 0 : return
hjson2 = {}
hjson2 = json.loads(hjsondata)
#新建目录,并切换到目录
self.ht.mkdir(dirname)
i = 0
if hjson2.has_key("fileList"):
for each in hjson2["fileList"]:
self.saveImage(hjson2["fileList"][i]["fileUrl"].encode('gbk'),hjson2["fileList"][i]["fileName"].encode('gbk'))
#每5个文件休息2秒
self.FileNum += 1
if i%5 ==0 : time.sleep(2)
i += 1
return i #保存相册照片地址到文件 ,不同相册保存到不同的文件
def saveFileList2Txt(self,filename,hjsondata,flag):
if len(hjsondata)<= 0 : return
hjson2 = {}
hjson2 = json.loads(hjsondata)
lfilename = filename+u".txt"
if flag == 0 : #新建文件
print u'创建相册文件'+lfilename+"\n"
#新建文件,代表新的相册重新开始计数
self.FileNum = 0
f = open(lfilename, 'wb')
else: #追加文件
f = open(lfilename, 'a')
i = 0
if hjson2.has_key("fileList"):
for each in hjson2["fileList"]:
f.write(hjson2["fileList"][i]["fileUrl"].encode('gbk')+"\n")
#每一千行分页
self.FileNum += 1
if self.FileNum%1000 ==0 :f.write('\n\n\n\n\n\n--------------------page %s ------------------\n\n\n\n\n\n' %(int(self.FileNum/1000)))
i += 1
f.close()
return i #循环读取相册文件
def getFileList(self,hjsondata,parentkey,childkey):
#step 3 getCoverFiles.action,循环取相册文件列表,单次最多取100条记录。
#每次count都是最大数量49,不管实际数量是否够,每次currentnum递增,直到返回空列表。
#最后一次返回 空列表
#{"albumSortFlag":true,"code":0,"info":"success!","fileList":[]}
#第一次取文件时,例如文件总数量只有2个,count也是放最大值49。
#albumIds[]=default-album-102-221216000029851117&ownerId=220012300029851117&height=300&width=300&count=49&currentNum=0&thumbType=imgcropa&fileType=0
#[{u'photoNum': 2518, u'albumName': u'default-album-1', u'iversion': -1, u'albumId': u'default-album-1', u'flversion': -1, u'createTime': 1448065264550L, u'size': 0},
#{u'photoNum': 100, u'albumName': u'default-album-2', u'iversion': -1, u'albumId': u'default-album-2', u'flversion': -1, u'createTime': 1453090781646L, u'size': 0}]
hsjon={}
hjson = json.loads(hjsondata.decode('utf-8'))
paraAlbum=OrderedDict()
if hjson.has_key(parentkey):
for each in hjson[parentkey]:
paraAlbum={}
paraAlbum['albumIds[]'] = each[childkey]
paraAlbum['ownerId'] = hjson['ownerId']
paraAlbum['height'] = ''
paraAlbum['width'] = ''
paraAlbum['count'] = self.OnceMaxFile
paraAlbum['thumbType'] = 'imgcropa'
paraAlbum['fileType'] = ''
itotal= each['photoNum']
icurrentnum=0
while icurrentnum<itotal:
paraAlbum['currentNum'] = icurrentnum
paraAlbumstr = urllib.urlencode(paraAlbum)
request=urllib2.Request(self.getalbumfileUrl,headers=self.loginHeaders,data=paraAlbumstr)
response = urllib2.urlopen(request)
rheader = response.info()
page = response.read()
#调用gzip进行解压
if rheader.get('Content-Encoding')=='gzip':
data = StringIO.StringIO(page)
gz = gzip.GzipFile(fileobj=data)
page = gz.read()
gz.close()
page= page.decode('utf-8')
#print page.decode('utf-8')
#方案1:保存下载地址到文本文件中,但不下载文件
#icurrentnum += self.saveFileList2Txt(each[childkey],page,icurrentnum)
#方案2:​单线程下载文件到本地
#icurrentnum += self.downFileList(each[childkey],page)
#方案3:​多线程下载文件到本地
#unicode码格式
#print each[childkey].encode('gbk')
icurrentnum += self.downFileListMultiThread(each[childkey],page)
return #step 1 getCloudAlbums,取相册列表
def getAlbumList(self):
self.loginHeaders={
'Host': 'www.hicloud.com',
'Connection': 'keep-alive',
'Accept': 'application/json, text/javascript, */*; q=0.01',
'Origin': 'https://www.hicloud.com',
'X-Requested-With': 'XMLHttpRequest',
'CSRFToken': self.CSRFToken,
'User-Agent': 'Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Maxthon/4.0 Chrome/30.0.1599.101 Safari/537.36',
'DNT': '',
'Referer': 'https://www.hicloud.com/album',
'Accept-Encoding': 'gzip,deflate',
'Accept-Language': 'zh-CN',
'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8'
}
request=urllib2.Request(self.getalbumsUrl,headers=self.loginHeaders)
response = urllib2.urlopen(request)
page=''
page= response.read()
'''#返回报文
{"ownerId":"220012300029851117","code":0,
"albumList":[{"albumId":"default-album-1","albumName":"default-album-1","createTime":1448065264550,"photoNum":2521,"flversion":-1,"iversion":-1,"size":0},
{"albumId":"default-album-2","albumName":"default-album-2","createTime":1453090781646,"photoNum":101,"flversion":-1,"iversion":-1,"size":0}],
"ownShareList":[{"ownerId":"220012300029851117","resource":"album","shareId":"default-album-102-220123000029851117","shareName":"微信","photoNum":2,"flversion":-1,"iversion":-1,"createTime":1448070407055,"source":"HUAWEI MT7-TL00","size":0,"ownerAcc":"jdstkxx@yeah.net","receiverList":[]}],
"recShareList":[]}'
'''
if len(page)<=0 :
print u'取相册列表出错,无返回报文!!!\n\n%s\n\n',page.decode('utf-8')
return page #主程序开始
hw=HuaWei()
hw.enableCookies()
count =0
while (count <3):
count += 1
content= hw.getLoginPage()
if content == '' :
print '获取登录信息出错,立即退出!!!\n\n[%s]\n\n' %(content)
break
#获取验证码
hw.getRadomCode()
#生成checkuserpwd提交时需要的POST data
postdata=hw.genLoginData(content)
#print postdata
reUrl = hw.checkUserPwd(postdata)
if reUrl.find("user_pwd_error") <> -1 :
print u'用户名或用户密码错误,立即退出!!!\n\n[%s]\n\n' %(reUrl)
break
elif reUrl.find("random_code_error") <> -1 :
print u'验证码错误,重试!!!\n\n[%s]\n\n' %(reUrl)
continue
else:
print '恭喜恭喜,登录华为云成功!!!\n\n'
iRet = hw.getAlbumPage()
if iRet == 0 :
print '打开相册页失败,未获取到CSRFToken!!!\n\n'
break
print '打开相册主页成功,获取到CSRFToken!!!\n\n'
page = hw.getAlbumList()
if page=='' :
print '获取到相册列表失败!!!\n\n'
break
#保存相册列表
hw.getFileList(page,'albumList','albumId')
#保存公共相册列表
hw.getFileList(page,'ownShareList','shareId')
print '运行结束,可以用迅雷打开相册文件进行批量下载到本地!!!\n\n'
break

htmltool.py

 # -*- coding:utf-8 -*-
__author__ = 'zhongtang' import re
import HTMLParser
import cgi
import sys
import os #处理页面标签类
class htmltool:
#去除img标签,1-7位空格,&nbsp;
removeImg = re.compile('<img.*?>| {1,7}|&nbsp;')
#删除超链接标签
removeAddr = re.compile('<a.*?>|</a>')
#把换行的标签换为\n
replaceLine = re.compile('<tr>|<div>|</div>|</p>')
#将表格制表<td>替换为\t
replaceTD= re.compile('<td>')
#将换行符或双换行符替换为\n
replaceBR = re.compile('<br><br>|<br>')
#将其余标签剔除
removeExtraTag = re.compile('<.*?>')
#将多行空行删除
removeNoneLine = re.compile('\n+') #html 转换成txt
#譬如 '&lt;abc&gt;' --> '<abc>'
def html2txt(self,html):
html_parser = HTMLParser.HTMLParser()
txt = html_parser.unescape(html)
return txt.strip() #html 转换成txt
#譬如 '<abc>' --> '&lt;abc&gt;'
def txt2html(self,txt):
html = cgi.escape(txt)
return html.strip() def replace(self,x):
x = re.sub(self.removeImg,"",x)
x = re.sub(self.removeAddr,"",x)
x = re.sub(self.replaceLine,"\n",x)
x = re.sub(self.replaceTD,"\t",x)
x = re.sub(self.replaceBR,"\n",x)
x = re.sub(self.removeExtraTag,"",x)
x = re.sub(self.removeNoneLine,"\n",x)
#strip()将前后多余内容删除
return x.strip() #获取脚本文件的当前路径,返回utf-8格式
def getPyFileDir(self):
#获取脚本路径
path = sys.path[0]
#判断为脚本文件还是py2exe编译后的文件,如果是脚本文件,则返回的是脚本的目录,如果是py2exe编译后的文件,则返回的是编译后的文件路径
if os.path.isdir(path):
return path.decode('utf-8')
elif os.path.isfile(path):
return os.path.dirname(path).decode('utf-8') #创建新目录
def mkdir(self,path):
path = path.strip()
pathDir = self.getPyFileDir()
#print path
#print pathDir
#unicode格式
path = u'%s\\%s' %(pathDir,path)
# 判断路径是否存在
# 存在 True
# 不存在 False
isExists=os.path.exists(path)
# 判断结果
if not isExists:
# 如果不存在则创建目录
#print u'新建[%s]的文件夹\n' %(path)
# 创建目录操作函数
os.makedirs(path)
#else:
# 如果目录存在则不创建,并提示目录已存在
#print u'文件夹[%s]已存在\n' %(path)
os.chdir(path)
return path