. /** * wikimedia class * class for communication with Wikimedia Commons API * * @author Dongsheng Cai , Raul Kern * @license http://www.gnu.org/copyleft/gpl.html GNU Public License */ define('WIKIMEDIA_THUMBS_PER_PAGE', 24); define('WIKIMEDIA_FILE_NS', 6); define('WIKIMEDIA_IMAGE_SIDE_LENGTH', 1024); class wikimedia { private $_conn = null; private $_param = array(); public function __construct($url = '') { if (empty($url)) { $this->api = 'http://commons.wikimedia.org/w/api.php'; } else { $this->api = $url; } $this->_param['format'] = 'php'; $this->_param['redirects'] = true; $this->_conn = new curl(array('cache'=>true, 'debug'=>false)); } public function login($user, $pass) { $this->_param['action'] = 'login'; $this->_param['lgname'] = $user; $this->_param['lgpassword'] = $pass; $content = $this->_conn->post($this->api, $this->_param); $result = unserialize($content); if (!empty($result['result']['sessionid'])) { $this->userid = $result['result']['lguserid']; $this->username = $result['result']['lgusername']; $this->token = $result['result']['lgtoken']; return true; } else { return false; } } public function logout() { $this->_param['action'] = 'logout'; $content = $this->_conn->post($this->api, $this->_param); return; } public function get_image_url($titles) { $image_urls = array(); $this->_param['action'] = 'query'; if (is_array($titles)) { foreach ($titles as $title) { $this->_param['titles'] .= ('|'.urldecode($title)); } } else { $this->_param['titles'] = urldecode($title); } $this->_param['prop'] = 'imageinfo'; $this->_param['iiprop'] = 'url'; $content = $this->_conn->post($this->api, $this->_param); $result = unserialize($content); foreach ($result['query']['pages'] as $page) { if (!empty($page['imageinfo'][0]['url'])) { $image_urls[] = $page['imageinfo'][0]['url']; } } return $image_urls; } public function get_images_by_page($title) { $image_urls = array(); $this->_param['action'] = 'query'; $this->_param['generator'] = 'images'; $this->_param['titles'] = urldecode($title); $this->_param['prop'] = 'images|info|imageinfo'; $this->_param['iiprop'] = 'url'; $content = $this->_conn->post($this->api, $this->_param); $result = unserialize($content); if (!empty($result['query']['pages'])) { foreach ($result['query']['pages'] as $page) { $image_urls[$page['title']] = $page['imageinfo'][0]['url']; } } return $image_urls; } /** * Generate thumbnail URL from image URL. * * @param string $image_url * @param int $orig_width * @param int $orig_height * @param int $thumb_width * @global object OUTPUT * @return string */ public function get_thumb_url($image_url, $orig_width, $orig_height, $thumb_width=75) { global $OUTPUT; if ($orig_width <= $thumb_width AND $orig_height <= $thumb_width) { return $image_url; } else { $thumb_url = ''; $commons_main_dir = 'http://upload.wikimedia.org/wikipedia/commons/'; if ($image_url) { $short_path = str_replace($commons_main_dir, '', $image_url); $extension = pathinfo($short_path, PATHINFO_EXTENSION); if (strcmp($extension, 'gif') == 0) { //no thumb for gifs return $OUTPUT->pix_url(file_extension_icon('xx.jpg', 32)); } $dir_parts = explode('/', $short_path); $file_name = end($dir_parts); if ($orig_height > $orig_width) { $thumb_width = round($thumb_width * $orig_width/$orig_height); } $thumb_url = $commons_main_dir . 'thumb/' . implode('/', $dir_parts) . '/'. $thumb_width .'px-' . $file_name; if (strcmp($extension, 'svg') == 0) { //png thumb for svg-s $thumb_url .= '.png'; } } return $thumb_url; } } /** * Search for images and return photos array. * * @param string $keyword * @return array */ public function search_images($keyword, $page = 0) { $files_array = array(); $this->_param['action'] = 'query'; $this->_param['generator'] = 'search'; $this->_param['gsrsearch'] = $keyword; $this->_param['gsrnamespace'] = WIKIMEDIA_FILE_NS; $this->_param['gsrlimit'] = WIKIMEDIA_THUMBS_PER_PAGE; $this->_param['gsroffset'] = $page * WIKIMEDIA_THUMBS_PER_PAGE; $this->_param['prop'] = 'imageinfo'; $this->_param['iiprop'] = 'url|dimensions|mime'; $this->_param['iiurlwidth'] = WIKIMEDIA_IMAGE_SIDE_LENGTH; $this->_param['iiurlheight'] = WIKIMEDIA_IMAGE_SIDE_LENGTH; //didn't work with POST $content = $this->_conn->get($this->api, $this->_param); $result = unserialize($content); if (!empty($result['query']['pages'])) { foreach ($result['query']['pages'] as $page) { $title = $page['title']; $file_type = $page['imageinfo'][0]['mime']; $image_types = array('image/jpeg', 'image/png', 'image/gif', 'image/svg+xml'); if (in_array($file_type, $image_types)) { //is image $thumbnail = $this->get_thumb_url($page['imageinfo'][0]['url'], $page['imageinfo'][0]['width'], $page['imageinfo'][0]['height']); $source = $page['imageinfo'][0]['thumburl']; //upload scaled down image $extension = pathinfo($title, PATHINFO_EXTENSION); if (strcmp($extension, 'svg') == 0) { //upload png version of svg-s $title .= '.png'; } } else { //other file types $thumbnail = ''; $source = $page['imageinfo'][0]['url']; } $files_array[] = array( 'title'=>substr($title, 5), //chop off 'File:' 'thumbnail'=>$thumbnail, 'thumbnail_width'=>120, 'thumbnail_height'=>120, // plugin-dependent unique path to the file (id, url, path, etc.) 'source'=>$source, // the accessible url of the file 'url'=>$page['imageinfo'][0]['descriptionurl'] ); } } return $files_array; } }