Created
March 1, 2010 06:37
-
-
Save zaknak/318137 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
models.register(update({ | |
name : 'pixiv', | |
ICON : 'http://www.pixiv.net/favicon.ico', | |
check : function(ps){ | |
return (/(photo|link)/).test(ps.type) && ps.pageUrl.match(/^http:\/\/www\.pixiv\.net\/member_illust\.php/); | |
}, | |
getToken : function(){ | |
var status = this.updateSession(); | |
switch (status){ | |
case 'none': | |
throw new Error(getMessage('error.notLoggedin')); | |
case 'same': | |
if(this.token) | |
return succeed(this.token); | |
case 'changed': | |
var self = this; | |
return request('http://www.pixiv.net/bookmark.php').addCallback(function(res){ | |
return self.token = $x( | |
'//form[@id="f"]/input[@name="tt"]/@value', | |
convertToHTMLDocument(res.responseText)); | |
}); | |
} | |
}, | |
getAuthCookie : function(){ | |
return getCookieString('pixiv.net', 'PHPSESSID'); | |
}, | |
post : function(ps){ | |
return this.getToken().addCallback(function(token){ | |
return request('http://www.pixiv.net/bookmark_add.php', { | |
sendContent : { | |
mode : 'add', | |
tt : token, | |
id : ps.pageUrl.match(/illust_id=(\d+)/)[1], | |
type : 'illust', | |
restrict : 0, //1 で非公開 | |
tag : ps.tags ? ps.tags.join(' '): '', | |
comment : joinText([ps.body, ps.description], ' ', true), | |
}, | |
}); | |
}); | |
} | |
}, AbstractSessionService)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment