Browse Source

api support

dev
xiaoz 5 years ago
parent
commit
16e970fa2e
  1. 2
      application/config/routes.php
  2. 38
      application/controllers/Upload.php
  3. 2
      application/libraries/Image.php

2
application/config/routes.php

@ -52,4 +52,6 @@ defined('BASEPATH') OR exit('No direct script access allowed'); @@ -52,4 +52,6 @@ defined('BASEPATH') OR exit('No direct script access allowed');
$route['default_controller'] = 'home';
$route['404_override'] = '';
$route['translate_uri_dashes'] = FALSE;
//API路由
$route['api/upload'] = 'upload/localhost';
$route['api/upload/(:any)'] = 'upload/localhost/$1';

38
application/controllers/Upload.php

@ -4,6 +4,9 @@ @@ -4,6 +4,9 @@
author:xiaoz.me
QQ:337003006
*/
//允许跨域请求
header("Access-Control-Allow-Origin: *");
defined('BASEPATH') OR exit('No direct script access allowed');
class Upload extends CI_Controller{
@ -68,7 +71,7 @@ @@ -68,7 +71,7 @@
$config['encrypt_name'] = TRUE; //随机命名图片
return $config;
}
public function localhost(){
public function localhost($type = 'json'){
//加载上传的配置选项
$config = $this->config();
//加载上传类
@ -140,7 +143,9 @@ @@ -140,7 +143,9 @@
"width" => $data['image_width'],
"height" => $data['image_height']
);
$this->succeed_msg($info);
//$this->succeed_msg($info);
//根据不同的类型返回不同的数据
$this->re_data($type,$info);
}
//图片没有上传过
else{
@ -180,10 +185,33 @@ @@ -180,10 +185,33 @@
"width" => $data['image_width'],
"height" => $data['image_height']
);
//根据不同的类型返回不同的数据
$this->re_data($type,$info);
}
//var_dump($info);
//exit;
$this->succeed_msg($info);
}
}
//根据不同的类型返回不同的数据
protected function re_data($type,$info){
$url = $info['url'];
switch ($type) {
case 'json':
$this->succeed_msg($info);
break;
case 'url':
echo $url;
break;
case 'html':
echo "<img src = '$url' />";
break;
case 'markdown':
echo "![]($url)";
break;
case 'bbcode':
echo "[img]".$url."[/img]";
break;
default:
$this->succeed_msg($info);
break;
}
}
//上传成功返回json

2
application/libraries/Image.php

@ -42,6 +42,7 @@ @@ -42,6 +42,7 @@
$image->writeImage( $thumbnail_full );
//清理工作
$image->clear();
return TRUE;
}
//不支持ImageMagick,使用GD2进行裁剪
else{
@ -54,6 +55,7 @@ @@ -54,6 +55,7 @@
$config['height'] = $height;
$this->CI->load->library('image_lib', $config);
$this->CI->image_lib->resize();
return TRUE;
}
}
//图片像素太小了,不创建缩略图

Loading…
Cancel
Save