此文本来发表于个人博客 老高的技术博客 ,欢迎和老高交流!php
以前啰嗦了不少,如今开始写核心代码。html
分析一下,发布文章的时候,咱们须要的信息就是当前文章的URL,咱们须要想办法从$contents
、 $class
中拿到他。api
目前咱们的插件类代码以下(请注意render被我改为了send)服务器
phpclass BaiduSubmitTest_Plugin implements Typecho_Plugin_Interface { public static function activate(){ //挂载发布文章和页面的接口 Typecho_Plugin::factory('Widget_Contents_Post_Edit')->finishPublish = array('BaiduSubmitTest_Plugin', 'send'); Typecho_Plugin::factory('Widget_Contents_Page_Edit')->finishPublish = array('BaiduSubmitTest_Plugin', 'send'); return '插件安装成功,请进入设置填写准入密钥'; } public static function deactivate(){ // do something return '插件卸载成功'; } public static function config(Typecho_Widget_Helper_Form $form){ $element = new Typecho_Widget_Helper_Form_Element_Text('api', null, null, _t('准入秘钥'), '请登陆百度站长平台获取'); $form->addInput($element); } public static function personalConfig(Typecho_Widget_Helper_Form $form){} public static function send($contents, $class){ //do something } }
获取永久连接须要经过路由规则 + Typecho_Common::url
联合生成!typecho
class BaiduSubmitTest_Plugin implements Typecho_Plugin_Interface { public static function activate(){ //挂载发布文章和页面的接口 Typecho_Plugin::factory('Widget_Contents_Post_Edit')->finishPublish = array('BaiduSubmitTest_Plugin', 'send'); Typecho_Plugin::factory('Widget_Contents_Page_Edit')->finishPublish = array('BaiduSubmitTest_Plugin', 'send'); return '插件安装成功,请进入设置填写准入密钥'; } public static function deactivate(){ // do something return '插件卸载成功'; } public static function config(Typecho_Widget_Helper_Form $form){ //保存接口调用地址 $element = new Typecho_Widget_Helper_Form_Element_Text('api', null, null, _t('接口调用地址'), '请登陆百度站长平台获取'); $form->addInput($element); } public static function personalConfig(Typecho_Widget_Helper_Form $form){} /** * 准备数据 * @param $contents 文章内容 * @param $class 调用接口的类 * @throws Typecho_Plugin_Exception */ public static function send($contents, $class){ //若是文章属性为隐藏或滞后发布 if( 'publish' != $contents['visibility'] || $contents['created'] > time()){ return; } //获取系统配置 $options = Helper::options(); //判断是否配置好API if( is_null($options->plugin('BaiduSubmitTest')->api) ){ return; } //获取文章类型 $type = $contents['type']; //获取路由信息 $routeExists = (NULL != Typecho_Router::get($type)); //生成永久链接 $path_info = $routeExists ? Typecho_Router::url($type, $contents) : '#'; $permalink = Typecho_Common::url($path_info, $options->index); } }
代码中有注释,老高就不在赘述了。url
至此咱们已经拿到了文章的永久连接,下一步就是给百度服务器发送数据了!插件
本节完!code