-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmixi.py
60 lines (50 loc) · 1.84 KB
/
mixi.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#! /usr/bin/env python
import httplib
import uuid
import datetime
import hashlib
import base64
class Service(object):
domain = 'mixi.jp'
_diary_path_format = '/atom/diary/member_id=%s'
def __init__(self, username, password, member_id):
self.username = username
self.password = password
self.member_id = member_id
self.diary_path = self._diary_path_format % member_id
def _headers(self):
nonce = uuid.uuid4().hex
created_date = datetime.datetime.utcnow().isoformat()+'Z'
hash = hashlib.sha1(nonce+created_date+self.password)
digest = base64.b64encode(hash.digest())
wsse_format = ('UsernameToken Username="%s", '
'PasswordDigest="%s", '
'Nonce="%s", '
'Created="%s"')
return {'Content-Type': 'application/atom+xml',
'Authorization': 'WSSE profile="UsernameToken"',
'X-WSSE': wsse_format % (self.username,
digest,
base64.b64encode(nonce),
created_date)}
def postDiary(self, entry):
connection = httplib.HTTPConnection(self.domain)
connection.request('POST',
self.diary_path,
entry.toxml(),
self._headers())
response = connection.getresponse()
body = response.read()
connection.close()
return (response, body)
class DiaryEntry(object):
_bodyxml_format = ("<?xml version='1.0' encoding='utf-8'?>"
"<entry xmlns='http://purl.org/atom/ns#'>"
"<title>%s</title>"
"<summary>%s</summary>"
"</entry>")
def __init__(self, title='', body=''):
self.title = title
self.body = body
def toxml(self):
return self._bodyxml_format % (self.title, self.body)