在worldpress中使用php代码抓取图书馆书籍信息

最近在新浪SAE上用worldpress搭建了一个简单的 个人博客,由于前端设计经验不足,css+div方面直接使用现有的inove主题。


但是自己想做一些个性化的设置,当然添加小工具之类的定制已经不能满足我的需求了。我已经添加了像3D标签云插件,百度地图的js API,以及音乐播放的插件,还有些前端代码添加都比较简单,在【外观->小工具】里面添加【文本】就可以了。本来想把首页的模板给换了,不知道为什么在SAE上鼓捣了一番没有成功。


于是有想添加一些其他的信息,比如自己读过的书籍。考虑到学校图书馆网站本身资源的丰富性,以及个人借阅的信息都保存在数据库中,心想可以借来一用。当然,最近和同学也有做一个书籍相关的网站的想法,于是趁此机会可以先一试。


首先svn将worldpress代码导出到本地(可以参考SAE开发文档)。
要利用图书馆数据,得先进行网页抓取,由于worldpress后台就是php写的,正好可以添加一些php代码实现此功能。
php进行网页抓取很简单,只需使用curl就行了。
这里是进行登陆后页面的抓取,因为要抓取的是我借阅过的书籍。所有要设置cookie,抓取到html内容之后,可以使用simple_html_dom获取节点内容,或者使用preg_match_all函数进行正则表达式匹配。
最后讲抓取的数据组合成自己想要的Html格式进行输出。


抓取到信息之后,要做的就是怎么放到worldpress里了。

这里参考了以下文章:

=============================================================================================================

地址: http://y234.cn/?p=4701
在WordPress上执行php代码
  本来在做极光监测页面的时候就需要执行php代码,但最后还是给我用最土鳖的办法绕过去了(在别的地方cron一个php,定时生成几个gif图像,然后引用之)。结果今天折腾实验室的降雨预报页面的时候,总算绕不过去了。本来想着说这应该是个小意思,我装个exec-php不就可以了嘛。结果exec-php竟然还要折腾配套的各种东西,搞到最后竟然还不能用,真是郁闷。于是只好查查看有没有替代的方法。幸好万能的Wordpress还是可以用不太麻烦的方法解决这一难题的,这一方法就是shortcode,适用于规模不大的php程序。


简单地说就是把你的php程序植入到主题里面,然后在文章里用形如[my-shortcode type="dog"]的形式调用之。
  首先修改一下主题里的function.php,在末尾添加这一行:
[php] view plain copy print ?
  1. include_once(“shortcode.php”);  
  我们所有的代码就放在shortcode.php里面。当然你想全写在function.php里也没问题。


  要把一个php程序写到shortcode里很容易,只要把它弄成一个函数(如果它还不是函数的话),然后注册这个函数即可。比如下面的shortcode.php
[html] view plain copy print ?
  1. function my-shortcode-function($atts){  
  2.     extract(shortcode_atts(array('type' => 'cat'),$atts)); // 设定参数type的默认值为cat  
  3.     if ($atts['type']=='cat') echo "Miao";  
  4.     elseif ($atts['type']=='dog') echo "Wang"; // 函数其他部分  
  5.     return;  
  6. }  
  7. add_shortcode('my-shortcode', 'my-shortcode-function'); // 注册my-shortcode-function到my-shortcode  


  于是一个shortcode就做好了。如果我想让它返回Wang,只需要在写文章的时候用[my-shortcode type="dog"]
就可以了。

=============================================================================================================


我新建了一个Bookshelf的页面,打开就会自动抓取进行,由于图书馆那边的原因,抓取耗时较长,估计得几秒左右。
效果如下,其中图片是抓包分析到图书馆js代码调用一个url接口,返回json数据中提取到的,代码直接在Inove主题中修改:



抓取网页代码如下:
[php] view plain copy print ?
  1. //登陆页面   
  2. $login_url = 'http://opac.lib.xidian.edu.cn/patroninfo/';  
  3. //用户名和密码   
  4. $post_fields = 'code=【用户名】pin=【密码】&pat_submit=xxx';  
  5. //cookie文件存放在网站根目录的temp文件夹下   
  6. $cookie_file = tempnam('./temp','cookie');  
  7. //登陆并获取cookie   
  8. $ch = curl_init($login_url);  
  9. curl_setopt($ch, CURLOPT_HEADER, 0);  
  10. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);  
  11. curl_setopt($ch, CURLOPT_MAXREDIRS, 1);  
  12. curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);  
  13. curl_setopt($ch, CURLOPT_AUTOREFERER, 1);  
  14. curl_setopt($ch, CURLOPT_POST, 1);  
  15. curl_setopt($ch, CURLOPT_POSTFIELDS, $post_fields);  
  16. curl_setopt($ch, CURLOPT_COOKIEJAR, $cookie_file);  
  17. curl_exec($ch);  
  18. curl_close($ch);  
  19. //访问借书的页面   
  20. $send_url='http://opac.lib.xidian.edu.cn/patroninfo~S0*chx/1075191/items';  
  21. $ch = curl_init($send_url);  
  22. curl_setopt($ch, CURLOPT_HEADER, 0);  
  23. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);  
  24. curl_setopt($ch, CURLOPT_COOKIEFILE, $cookie_file);  
  25. $contents = curl_exec($ch);  
  26. curl_close($ch);  
  27. echo "<strong><font color=\"#ff0000\">注:以下书籍信息由DC的代码为您自动抓取--来源:西安电子科技大学 图书 馆 --请稍候......</font></strong><br />";  
  28.   
  29.   
  30. echo "<font color=\"#00c000\">------------------------------------------------Reading-----------------------------------------------------</font></strong></br>";  
  31. include_once('simple_html_dom.php');  
  32. $html= str_get_html($contents);  
  33. $books=$html->find('label');  
  34. $dates$html->find('.patFuncStatus');  
  35. preg_match_all("/\/record=b\d+~S0\*chx/",$contents,$arr);  
  36. //echo $arr[0][0];   
  37. for($i=0;$i<count($books);$i++)  
  38. {  
  39.     //echo $books[$i]->plaintext."【".$dates[$i]->plaintext.'】<br>' ;   
  40.     echo "<a href='http://opac.lib.xidian.edu.cn".$arr[0][$i]."'>"."◆".$books[$i]->plaintext."</a>";  
  41.     $send_url="http://opac.lib.xidian.edu.cn".$arr[0][$i];  
  42.     //echo $send_url;   
  43.     $ch = curl_init($send_url);  
  44.     curl_setopt($ch, CURLOPT_HEADER, 0);  
  45.     curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);  
  46.     curl_setopt($ch, CURLOPT_COOKIEFILE, $cookie_file);  
  47.     $contents = curl_exec($ch);  
  48.     curl_close($ch);  
  49.       
  50.     $html= str_get_html($contents);  
  51.     //echo $html;   
  52.     preg_match_all("/\d{3}\-\d\-.*\-\d/",$html,$isbn);  
  53.     //var_dump($isbn[0][0]);   
  54.     $send_url="http://data.libtop.com/xopac/search?callback=jsonp1347852533232&isbn=".$isbn[0][0]."&library=244&media=0";  
  55.   
  56.   
  57.     $ch = curl_init($send_url);  
  58.     curl_setopt($ch, CURLOPT_HEADER, 0);  
  59.     curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);  
  60.     $contents = curl_exec($ch);  
  61.     curl_close($ch);  
  62.     preg_match_all("/http.*jpg/",$contents,$img);  
  63.     echo "<img src=\"".$img[0][0]."\"/>";  
  64.     echo "<a href='http://data.libtop.com/xopac/search?callback=jsonp1347852533232&isbn=".$isbn[0][0]."&library=244&media=0'>"."【获取本书信息:格式JSON】"."</a>"."</br>";  
  65. }  
  66. $html->clear();  
  67.   
  68.   
  69.   
  70.   
  71. echo "<font color=\"#00c000\">------------------------------------------------Have Read-----------------------------------------------------</font></strong></br>";  
  72. $send_url='http://opac.lib.xidian.edu.cn/patroninfo~S0*chx/1075191/readinghistory';  
  73. $ch = curl_init($send_url);  
  74. curl_setopt($ch, CURLOPT_HEADER, 0);  
  75. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);  
  76. curl_setopt($ch, CURLOPT_COOKIEFILE, $cookie_file);  
  77. $contents = curl_exec($ch);  
  78. curl_close($ch);  
  79.   
  80.   
  81. $html= str_get_html($contents);  
  82. $books=$html->find('.patFuncTitle');  
  83. $dates$html->find('.patFuncDate');  
  84. for($i=0;$i<count($books);$i++)  
  85. {  
  86.     echo "◆".$books[$i]->plaintext."【".$dates[$i]->plaintext.'】<br>' ;  
  87. }  
  88. $html->clear();  
  89. return;  
  90. }  

原文:http://blog.csdn.net/xiangshimoni/article/details/8004196

你可能感兴趣的:(在worldpress中使用php代码抓取图书馆书籍信息)