123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303 |
- <?php
- defined('IN_PHPCMS') or exit('No permission resources.');
- class collection {
-
- protected static $url,$config;
-
- /**
- * 采集内容
- * @param string $url 采集地址
- * @param array $config 配置参数
- * @param integer $page 分页采集模式
- */
- public static function get_content($url, $config, $page = 0) {
- set_time_limit(300);
- static $oldurl = array();
- $page = intval($page) ? intval($page) : 0;
- if ($html = self::get_html($url, $config)) {
- if (empty($page)) {
- //获取标题
- if ($config['title_rule']) {
- $title_rule = self::replace_sg($config['title_rule']);
- $data['title'] = self::replace_item(self::cut_html($html, $title_rule[0], $title_rule[1]), $config['title_html_rule']);
- }
-
- //获取作者
- if ($config['author_rule']) {
- $author_rule = self::replace_sg($config['author_rule']);
- $data['author'] = self::replace_item(self::cut_html($html, $author_rule[0], $author_rule[1]), $config['author_html_rule']);
- }
-
- //获取来源
- if ($config['comeform_rule']) {
- $comeform_rule = self::replace_sg($config['comeform_rule']);
- $data['comeform'] = self::replace_item(self::cut_html($html, $comeform_rule[0], $comeform_rule[1]), $config['comeform_html_rule']);
- }
-
- //获取时间
- if ($config['time_rule']) {
- $time_rule = self::replace_sg($config['time_rule']);
- $data['time'] = strtotime(self::replace_item(self::cut_html($html, $time_rule[0], $time_rule[1]), $config['time_html_rule']));
- }
-
- if (empty($data['time'])) $data['time'] = SYS_TIME;
-
- //对自定义数据进行采集
- if ($config['customize_config'] = string2array($config['customize_config'])) {
- foreach ($config['customize_config'] as $k=>$v) {
- if (empty($v['rule'])) continue;
- $rule = self::replace_sg($v['rule']);
- $data[$v['en_name']] = self::replace_item(self::cut_html($html, $rule[0], $rule[1]), $v['html_rule']);
- }
- }
- }
-
- //获取内容
- if ($config['content_rule']) {
- $content_rule = self::replace_sg($config['content_rule']);
- $data['content'] = self::replace_item(self::cut_html($html, $content_rule[0], $content_rule[1]), $config['content_html_rule']);
- }
-
- //处理分页
- if (in_array($page, array(0,2)) && !empty($config['content_page_start']) && !empty($config['content_page_end'])) {
- $oldurl[] = $url;
- $tmp[] = $data['content'];
- $page_html = self::cut_html($html, $config['content_page_start'], $config['content_page_end']);
- //上下页模式
- if ($config['content_page_rule'] == 2 && in_array($page, array(0,2)) && $page_html) {
- preg_match_all('/<a [^>]*href=[\'"]?([^>\'" ]*)[\'"]?[^>]*>([^<\/]*)<\/a>/i', $page_html, $out);
- if (!empty($out[1]) && !empty($out[2])) {
- foreach ($out[2] as $k=>$v) {
- if (strpos($v, $config['content_nextpage']) === false) continue;
- if ($out[1][$k] == '#') continue;
- $out[1][$k] = self::url_check($out[1][$k], $url, $config);
- if (in_array($out[1][$k], $oldurl)) continue;
- $oldurl[] = $out[1][$k];
- $results = self::get_content($out[1][$k], $config, 2);
- if (!in_array($results['content'], $tmp)) $tmp[] = $results['content'];
- }
- }
- }
-
- //全部罗列模式
- if ($config['content_page_rule'] == 1 && $page == 0 && $page_html) {
- preg_match_all('/<a [^>]*href=[\'"]?([^>\'" ]*)[\'"]?/i', $page_html, $out);
- if (is_array($out[1]) && !empty($out[1])) {
-
- $out = array_unique($out[1]);
- foreach ($out as $k=>$v) {
- if ($out[1][$k] == '#') continue;
- $v = self::url_check($v, $url, $config);
- $results = self::get_content($v, $config, 1);
- if (!in_array($results['content'], $tmp) && $results['content']!="") $tmp[] = $results['content'];
- }
- }
-
- }
- $data['content'] = $config['content_page'] == 1 ? implode('[page]', $tmp) : implode('', $tmp);
- }
-
- if ($page == 0) {
- self::$url = $url;
- self::$config = $config;
- $data['content'] = preg_replace_callback('/<img[^>]*src=[\'"]?([^>\'"\s]*)[\'"]?[^>]*>/i', array('collection','download_img_callback'), $data['content']);
- //下载内容中的图片到本地
- if (empty($page) && !empty($data['content']) && $config['down_attachment'] == 1) {
-
- pc_base::load_sys_class('attachment','',0);
- $attachment = new attachment('collection','0',get_siteid());
- $data['content'] = $attachment->download('content', $data['content'],$config['watermark']);
- }
- }
- return $data;
- }
- }
-
- /**
- * 转换图片地址为绝对路径,为下载做准备。
- * @param array $out 图片地址
- */
- protected static function download_img_callback($matches) {
- return self::download_img($matches[0], $matches[1]);
- }
- protected static function download_img($old, $out) {
- if (!empty($old) && !empty($out) && strpos($out, '://') === false) {
- return str_replace($out, self::url_check($out, self::$url, self::$config), $old);
- } else {
- return $old;
- }
- }
-
- /**
- * 得到需要采集的网页列表页
- * @param array $config 配置参数
- * @param integer $num 返回数
- */
- public static function url_list(&$config, $num = '') {
- $url = array();
- switch ($config['sourcetype']) {
- case '1'://序列化
- $num = empty($num) ? $config['pagesize_end'] : $num;
- if($num<$config['pagesize_start']) $num=$config['pagesize_start'];
- for ($i = $config['pagesize_start']; $i <= $num; $i = $i + $config['par_num']) {
- $url[$i] = str_replace('(*)', $i, $config['urlpage']);
- }
- break;
- case '2'://多网址
- $url = explode("\r\n", $config['urlpage']);
- break;
- case '3'://单一网址
- case '4'://RSS
- $url[] = $config['urlpage'];
- break;
- }
- return $url;
- }
-
- /**
- * 获取文章网址
- * @param string $url 采集地址
- * @param array $config 配置
- */
- public static function get_url_lists($url, &$config) {
- if ($html = self::get_html($url, $config)) {
- if ($config['sourcetype'] == 4) { //RSS
- $xml = pc_base::load_sys_class('xml');
- $html = $xml->xml_unserialize($html);
- if (pc_base::load_config('system', 'charset') == 'gbk') {
- $html = array_iconv($html, 'utf-8', 'gbk');
- }
- $data = array();
- if (is_array($html['rss']['channel']['item']))foreach ($html['rss']['channel']['item'] as $k=>$v) {
- $data[$k]['url'] = $v['link'];
- $data[$k]['title'] = $v['title'];
- }
- } else {
- $html = self::cut_html($html, $config['url_start'], $config['url_end']);
- $html = str_replace(array("\r", "\n"), '', $html);
- $html = str_replace(array("</a>", "</A>"), "</a>\n", $html);
- preg_match_all('/<a ([^>]*)>([^\/a>].*)<\/a>/i', $html, $out);
- //$out[1] = array_unique($out[1]);
- //$out[2] = array_unique($out[2]);
- $data = array();
- foreach ($out[1] as $k=>$v) {
- if (preg_match('/href=[\'"]?([^\'" ]*)[\'"]?/i', $v, $match_out)) {
- if ($config['url_contain']) {
- if (strpos($match_out[1], $config['url_contain']) === false) {
- continue;
- }
- }
-
- if ($config['url_except']) {
- if (strpos($match_out[1], $config['url_except']) !== false) {
- continue;
- }
- }
- $url2 = $match_out[1];
- $url2 = self::url_check($url2, $url, $config);
-
- $data[$k]['url'] = $url2;
- $data[$k]['title'] = strip_tags($out[2][$k]);
- } else {
- continue;
- }
- }
-
- }
- return $data;
- } else {
- return false;
- }
- }
-
- /**
- * 获取远程HTML
- * @param string $url 获取地址
- * @param array $config 配置
- */
- protected static function get_html($url, &$config) {
- if (!empty($url) && $html = @file_get_contents($url)) {
- if ($syscharset != $config['sourcecharset'] && $config['sourcetype'] != 4) {
- $html = iconv($config['sourcecharset'], CHARSET.'//TRANSLIT//IGNORE', $html);
- }
- return $html;
- } else {
- return false;
- }
- }
-
- /**
- *
- * HTML切取
- * @param string $html 要进入切取的HTML代码
- * @param string $start 开始
- * @param string $end 结束
- */
- protected static function cut_html($html, $start, $end) {
- if (empty($html)) return false;
- $html = str_replace(array("\r", "\n"), "", $html);
- $start = str_replace(array("\r", "\n"), "", $start);
- $end = str_replace(array("\r", "\n"), "", $end);
- $html = explode(trim($start), $html);
- if(is_array($html)) $html = explode(trim($end), $html[1]);
- return trim($html[0]);
- }
-
- /**
- * 过滤代码
- * @param string $html HTML代码
- * @param array $config 过滤配置
- */
- protected static function replace_item($html, $config) {
- if (empty($config)) return $html;
- $config = explode("\n", $config);
- $patterns = $replace = array();
- $p = 0;
- foreach ($config as $k=>$v) {
- if (empty($v)) continue;
- $c = explode('[|]', $v);
- $patterns[$k] = '/'.str_replace('/', '\/', $c[0]).'/i';
- $replace[$k] = $c[1];
- $p = 1;
- }
- return $p ? @preg_replace($patterns, $replace, $html) : false;
- }
-
- /**
- * 替换采集内容
- * @param $html 采集规则
- */
- protected static function replace_sg($html) {
- $list = explode(L('[content]'), $html);
- if (is_array($list)) foreach ($list as $k=>$v) {
- $list[$k] = str_replace(array("\r", "\n"), '', trim($v));
- }
- return $list;
- }
-
- /**
- * URL地址检查
- * @param string $url 需要检查的URL
- * @param string $baseurl 基本URL
- * @param array $config 配置信息
- */
- protected static function url_check($url, $baseurl, $config) {
- $urlinfo = parse_url($baseurl);
-
- $baseurl = $urlinfo['scheme'].'://'.$urlinfo['host'].(substr($urlinfo['path'], -1, 1) === '/' ? substr($urlinfo['path'], 0, -1) : str_replace('\\', '/', dirname($urlinfo['path']))).'/';
- if (strpos($url, '://') === false) {
- if ($url[0] == '/') {
- $url = $urlinfo['scheme'].'://'.$urlinfo['host'].$url;
- } else {
- if ($config['page_base']) {
- $url = $config['page_base'].$url;
- } else {
- $url = $baseurl.$url;
- }
- }
- }
- return $url;
- }
- }
|