花了点时间弄了一个插件。
代码地址:https://github.com/web3d/plugins/tree/master/sinauth
typecho的扩展机制还是比较完善的,可以自行增加action、route、扩展现有widget功能、后台插件配置界面等。
偷懒,使用的是sae中封装的sdk访问新浪开放平台数据。
插件放到/root_path/usr/plugins/sinauth 目录下:
plugin.phpauthorizeaction.php
plugin.php用于插件初始化,authorizeaction.php用于扩展功能。
___sinauthauthorizeicon = array('sinauth_plugin', 'authorizeicon'); helper::addaction('sinauthauthorize', 'sinauth_authorizeaction'); helper::addroute('sinauthauthorize', '/sinauthauthorize/', 'sinauth_authorizeaction', 'action'); helper::addroute('sinauthcallback', '/sinauthcallback/', 'sinauth_authorizeaction', 'callback'); return _t($meg.'。请进行');%0a%20%20%20%20%7d%0a%20%20%20%20%0a%20%20%20%20public%20static%20function%20install()%0a%20%20%20%20%7b%0a%20%20%20%20%20%20%20//db%e5%88%9b%e5%bb%ba%0a%20%20%20%20%7d%0a%0a%20%20%20%20/**%0a%20%20%20%20%20*%20%e8%8e%b7%e5%8f%96%e6%8f%92%e4%bb%b6%e9%85%8d%e7%bd%ae%e9%9d%a2%e6%9d%bf%0a%20%20%20%20%20*%20%0a%20%20%20%20%20*%20@access%20public%0a%20%20%20%20%20*%20@param%20typecho_widget_helper_form%20%24form%20%e9%85%8d%e7%bd%ae%e9%9d%a2%e6%9d%bf%0a%20%20%20%20%20*%20@return%20void%0a%20%20%20%20%20*/%0a%20%20%20%20public%20static%20function%20config(typecho_widget_helper_form%20%24form)%0a%20%20%20%20%7b%0a%20%20%20%20%20%20%20%20%24client_id%20=%20new%20typecho_widget_helper_form_element_text('client_id',%20null,'',%20_t('app%20key'),'%e8%af%b7%e5%9c%a8%e5%be%ae%e5%8d%9a%e5%bc%80%e6%94%be%e5%b9%b3%e5%8f%b0%e6%9f%a5%e7%9c%8bhttp://open.weibo.com');%0a%20%20%20%20%20%20%20%20%24form->addinput(%24client_id);%0a%20%20%20%20%20%20%20%20%0a%20%20%20%20%20%20%20%20%24client_secret%20=%20new%20typecho_widget_helper_form_element_text('client_secret',%20null,'',%20_t('app%20secret'),'%e8%af%b7%e5%9c%a8%e5%be%ae%e5%8d%9a%e5%bc%80%e6%94%be%e5%b9%b3%e5%8f%b0%e6%9f%a5%e7%9c%8bhttp://open.weibo.com');%0a%20%20%20%20%20%20%20%20%24form->addinput(%24client_secret);%0a%20%20%20%20%20%20%20%20%0a%20%20%20%20%20%20%20%20%24callback_url%20=%20new%20typecho_widget_helper_form_element_text('callback_url',%20null,'http://',%20_t('%e5%9b%9e%e8%b0%83%e5%9c%b0%e5%9d%80'),'%e8%af%b7%e4%b8%8e%e5%be%ae%e5%8d%9a%e5%bc%80%e6%94%be%e5%b9%b3%e5%8f%b0%e4%b8%ad%e8%ae%be%e7%bd%ae%e4%b8%80%e8%87%b4');%0a%20%20%20%20%20%20%20%20%24form->addinput(%24callback_url);%0a%20%20%20%20%20%20%20%20%0a%20%20%20%20%7d%0a%7d
class%20sinauth_authorizeaction%20extends%20typecho_widget%20implements%20widget_interface_do%0a%7b%0a%20%20%20%20public%20function%20action()%7b%0a%20%20%20%20%20%20%20%20%0a%20%20%20%20%7d%0a%0a%20%20%20%20public%20function%20callback()%7b%0a%20%20%20%20%20%20%20%20%0a%20%20%20%20%7d%0a%7d
%e5%9c%a8%e9%9c%80%e8%a6%81%e6%94%be%e5%85%a5%e5%8f%a3%e7%9a%84%e5%9c%b0%e6%96%b9%ef%bc%8c%e5%8a%a0%e4%b8%8a
user->sinauthauthorizeicon();%20?>
%0a%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%0a%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%0a%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%0a%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%e4%bb%a5%e4%b8%8a%e5%b0%b1%e4%bb%8b%e7%bb%8d%e4%ba%86typecho%20%e6%96%b0%e6%b5%aa%e7%99%bb%e9%99%86%e6%8f%92%e4%bb%b6%20sinauth%ef%bc%8c%e5%8c%85%e6%8b%ac%e4%ba%86%e6%96%b9%e9%9d%a2%e7%9a%84%e5%86%85%e5%ae%b9%ef%bc%8c%e5%b8%8c%e6%9c%9b%e5%af%b9php%e6%95%99%e7%a8%8b%e6%9c%89%e5%85%b4%e8%b6%a3%e7%9a%84%e6%9c%8b%e5%8f%8b%e6%9c%89%e6%89%80%e5%b8%ae%e5%8a%a9%e3%80%82
%0a%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%0a%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20
%0a%20%20%20%20%20%20%20%20%20%20%20%20%20>
