feat: init project codebase
This commit is contained in:
@@ -0,0 +1,410 @@
|
||||
<?php
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
use chriskacerguis\RestServer\RestController;
|
||||
|
||||
|
||||
class Uploadimg extends RestController
|
||||
{
|
||||
|
||||
function __construct()
|
||||
{
|
||||
parent::__construct();
|
||||
$this->load->model('Base_model');
|
||||
}
|
||||
|
||||
|
||||
public function testapi_get()
|
||||
{
|
||||
echo "test api ok...";
|
||||
|
||||
echo APPPATH . "\n";
|
||||
echo SELF . "\n";
|
||||
echo BASEPATH . "\n";
|
||||
echo FCPATH . "\n";
|
||||
echo SYSDIR . "\n";
|
||||
var_dump($this->config->item('rest_language'));
|
||||
var_dump($this->config->item('language'));
|
||||
|
||||
var_dump($this->config);
|
||||
}
|
||||
|
||||
public function upload_post()
|
||||
{
|
||||
$uploadDir = FCPATH . 'uploads/';
|
||||
$id = 'T' . $this->POST('identify');
|
||||
$php_path = dirname(__FILE__) . '/';//dirname($_SERVER['DOCUMENT_ROOT']); dirname(__FILE__)
|
||||
// $php_url = "";//dirname($_SERVER['HTTP_HOST']) . '/';//PHP_SELF
|
||||
$php_url = $_SERVER['HTTP_HOST'] . '/'; //PHP_SELF
|
||||
|
||||
$save_path = $uploadDir;
|
||||
//文件保存目录URL
|
||||
$save_url = $php_url . 'uploads/';
|
||||
// nginx服务器端修改绝对路径
|
||||
//$save_url = "http://172.30.3.11/static/home/kindeditor/attached/";
|
||||
|
||||
// var_dump($save_path);
|
||||
// var_dump($save_url);
|
||||
// string(46) "D:\Q\code\vue\CodeIgniter-3.1.10\uploads\imgs\"
|
||||
// string(28) "www.cirest.com:8889/uploads/"
|
||||
|
||||
|
||||
//定义允许上传的文件扩展名
|
||||
$ext_arr = array(
|
||||
'image' => array('gif', 'jpg', 'jpeg', 'png', 'bmp'),
|
||||
'flash' => array('swf', 'flv'),
|
||||
'media' => array('swf', 'flv', 'mp3', 'wav', 'wma', 'wmv', 'mid', 'avi', 'mpg', 'asf', 'rm', 'rmvb'),
|
||||
'file' => array('doc', 'docx', 'xls', 'xlsx', 'ppt', 'htm', 'html', 'txt', 'zip', 'rar', 'gz', 'bz2'),
|
||||
);
|
||||
//最大文件大小 10M 默认是1M
|
||||
$max_size = 10000000;
|
||||
|
||||
$save_path = realpath($save_path) . '/';
|
||||
$save_path = str_replace('\\', '/', $save_path);
|
||||
|
||||
//PHP上传失败
|
||||
if (!empty($_FILES['file']['error'])) {
|
||||
switch ($_FILES['file']['error']) {
|
||||
case '1':
|
||||
$error = '超过php.ini允许的大小。';
|
||||
break;
|
||||
case '2':
|
||||
$error = '超过表单允许的大小。';
|
||||
break;
|
||||
case '3':
|
||||
$error = '图片只有部分被上传。';
|
||||
break;
|
||||
case '4':
|
||||
$error = '请选择图片。';
|
||||
break;
|
||||
case '6':
|
||||
$error = '找不到临时目录。';
|
||||
break;
|
||||
case '7':
|
||||
$error = '写文件到硬盘出错。';
|
||||
break;
|
||||
case '8':
|
||||
$error = 'File upload stopped by extension。';
|
||||
break;
|
||||
case '999':
|
||||
default:
|
||||
$error = '未知错误。';
|
||||
}
|
||||
$this->alert($error);
|
||||
}
|
||||
|
||||
//有上传文件时
|
||||
if (empty($_FILES) === false) {
|
||||
//原文件名
|
||||
$file_name = $_FILES['file']['name'];
|
||||
//服务器上临时文件名
|
||||
$tmp_name = $_FILES['file']['tmp_name'];
|
||||
//文件大小
|
||||
$file_size = $_FILES['file']['size'];
|
||||
//检查文件名
|
||||
if (!$file_name) {
|
||||
$this->alert("请选择文件。");
|
||||
}
|
||||
//检查目录
|
||||
if (@is_dir($save_path) === false) {
|
||||
$this->alert("上传目录不存在。");
|
||||
}
|
||||
//检查目录写权限
|
||||
if (@is_writable($save_path) === false) {
|
||||
$this->alert("上传目录没有写权限。");
|
||||
}
|
||||
//检查是否已上传
|
||||
if (@is_uploaded_file($tmp_name) === false) {
|
||||
$this->alert("上传失败。");
|
||||
}
|
||||
//检查文件大小
|
||||
if ($file_size > $max_size) {
|
||||
$this->alert("上传文件大小超过限制(<10M)。");
|
||||
}
|
||||
//检查目录名
|
||||
$dir_name = empty($_GET['dir']) ? 'image' : trim($_GET['dir']);
|
||||
if (empty($ext_arr[$dir_name])) {
|
||||
$this->alert("目录名不正确。");
|
||||
}
|
||||
//获得文件扩展名
|
||||
$temp_arr = explode(".", $file_name);
|
||||
$file_ext = array_pop($temp_arr);
|
||||
$file_ext = trim($file_ext);
|
||||
$file_ext = strtolower($file_ext);
|
||||
|
||||
//检查扩展名
|
||||
if (!in_array($file_ext, $ext_arr[$dir_name])) {
|
||||
$this->alert("上传文件扩展名是不允许的扩展名。\n只允许" . implode(",", $ext_arr[$dir_name]) . "格式。");
|
||||
|
||||
}
|
||||
|
||||
/*
|
||||
* 以 T+身份证号作为临时目录 , 以身份证作为正式目录
|
||||
*/
|
||||
$identify = empty($id) ? '' : trim($id);
|
||||
|
||||
if ($identify == '') {
|
||||
echo "Invalid session identify.";
|
||||
exit;
|
||||
}
|
||||
//创建文件夹
|
||||
if ($dir_name !== '') {
|
||||
$save_path .= $dir_name . "/" . $identify . "/";
|
||||
$save_url .= $dir_name . "/" . $identify . "/";
|
||||
if (!file_exists($save_path)) {
|
||||
mkdir($save_path, 0777, true); // true 允许创建多级目录
|
||||
}
|
||||
}
|
||||
$ymd = date("Ym");
|
||||
$save_path .= $ymd . "/";
|
||||
$save_url .= $ymd . "/";
|
||||
if (!file_exists($save_path)) {
|
||||
mkdir($save_path);
|
||||
}
|
||||
//新文件名
|
||||
$new_file_name = date("YmdHis") . '_' . rand(10000, 99999) . '.' . $file_ext;
|
||||
//移动文件
|
||||
$file_path = $save_path . $new_file_name;
|
||||
if (move_uploaded_file($tmp_name, $file_path) === false) {
|
||||
$this->alert("上传文件失败。");
|
||||
}
|
||||
@chmod($file_path, 0644);
|
||||
$file_url = $save_url . $new_file_name;
|
||||
|
||||
header('Content-type: text/html; charset=UTF-8');
|
||||
// Insert file information in the database
|
||||
// $insert = $db->query("INSERT INTO files (file_name, uploaded_on) VALUES ('".$fileName."', NOW())");
|
||||
$link = "http://" . $file_url;
|
||||
// http://www.cirest.com:8889/uploads/image/T410000000000000000/201902/20190228071354_96833.png
|
||||
$message = [
|
||||
"code" => 20000,
|
||||
"error" => 0,
|
||||
"message" => "上传成功",
|
||||
"link" => $link,
|
||||
"filepath" => preg_replace('/^http.*uploads/', '/uploads', $link)
|
||||
];
|
||||
|
||||
echo json_encode($message);
|
||||
// $this->response($message, RestController::HTTP_OK);
|
||||
// alert里面使用时 exit() 产生的是空,或字符串,使用原生的json_encode返回统一的字符串,在客户端在统一处理成对象
|
||||
}
|
||||
}
|
||||
|
||||
public function delimg_post()
|
||||
{
|
||||
$php_path = dirname(__FILE__) . '/';//dirname($_SERVER['DOCUMENT_ROOT']); dirname(__FILE__)
|
||||
|
||||
//文件保存目录路径
|
||||
$save_path = $php_path . '../../../../';
|
||||
|
||||
$save_path = realpath($save_path) . '/';
|
||||
$save_path = str_replace('\\', '/', $save_path);
|
||||
// var_dump($save_path);
|
||||
// "D:/Q/code/vue/CodeIgniter-3.1.10/"
|
||||
|
||||
$DelFileName = $this->POST('filename');
|
||||
$DelFileType = $this->POST('isdir');
|
||||
|
||||
$FilePath = $save_path . $DelFileName;
|
||||
|
||||
// var_dump($FilePath);return;
|
||||
|
||||
if ($DelFileType == 'F') {
|
||||
if (!is_file($FilePath)) {
|
||||
$message = [
|
||||
"code" => 20000,
|
||||
"data" => "文件不存在 - " . $DelFileName,
|
||||
"message" => "文件不存在 - " . $DelFileName
|
||||
];
|
||||
|
||||
echo json_encode($message);
|
||||
|
||||
} else {
|
||||
|
||||
if (!unlink($FilePath)) {
|
||||
$message = [
|
||||
"code" => 20000,
|
||||
"data" => "Error deleting " . $FilePath,
|
||||
"message" => "Error deleting " . $FilePath
|
||||
];
|
||||
echo json_encode($message);
|
||||
|
||||
} else {
|
||||
// 必须返回code 由于前端vue封装的 request 请求,返回数据对code进行判断
|
||||
$message = [
|
||||
"code" => 20000,
|
||||
"data" => '服务器删除成功!',
|
||||
"message" => '服务器删除成功!'
|
||||
];
|
||||
echo json_encode($message);
|
||||
}
|
||||
}
|
||||
exit;
|
||||
}
|
||||
|
||||
if ($DelFileType == 'D') {
|
||||
if (!@rmdir($FilePath)) {
|
||||
echo "文件夹 " . $FilePath . " 不为空,不能删除!";
|
||||
} else {
|
||||
echo "succeed";
|
||||
}
|
||||
exit;
|
||||
}
|
||||
}
|
||||
|
||||
private function alert($msg)
|
||||
{
|
||||
header('Content-type: text/html; charset=UTF-8');
|
||||
$message = [
|
||||
"code" => 20000,
|
||||
"error" => 1,
|
||||
"message" => $msg
|
||||
];
|
||||
echo json_encode($message);
|
||||
exit();
|
||||
// var_dump($message);
|
||||
// $this->response($message, RestController::HTTP_OK);
|
||||
// die();
|
||||
}
|
||||
|
||||
|
||||
public function onsubmit_post()
|
||||
{
|
||||
$identify = $this->POST('identify');
|
||||
$phone = $this->POST('phone');
|
||||
$idinfo = $this->POST('idinfo');
|
||||
$bankinfo = $this->POST('bankinfo');
|
||||
// $data = [
|
||||
// 'identify' => $identify,
|
||||
// 'phone' => $phone,
|
||||
// 'idinfo' => $idinfo,
|
||||
// 'check' => '待审核'
|
||||
// ];
|
||||
|
||||
// 写入数据库表 身份证号,手机号,证件照,文件路径等
|
||||
$where = [
|
||||
'identify' => $identify,
|
||||
'phone' => $phone,
|
||||
];
|
||||
|
||||
$data = [
|
||||
'idinfo' => $idinfo,
|
||||
'bankinfo' => $bankinfo,
|
||||
'check' => '待审核'
|
||||
];
|
||||
|
||||
$result = $this->Base_model->_update_key('upload_tbl', $data, $where);
|
||||
|
||||
if ($result) {
|
||||
$message = [
|
||||
"code" => 20000,
|
||||
"message" => '写入数据库表成功,请请待审核通知!',
|
||||
"data" => array_merge($where, $data)
|
||||
];
|
||||
$this->response($message, RestController::HTTP_OK);
|
||||
} else {
|
||||
$message = [
|
||||
"code" => 20000,
|
||||
"message" => '写入数据库表失败!',
|
||||
"data" => array_merge($where, $data)
|
||||
];
|
||||
$this->response($message, RestController::HTTP_OK);
|
||||
}
|
||||
}
|
||||
|
||||
// Chevereto 图床免费版本地址:https://github.com/Chevereto/Chevereto-Free
|
||||
// https://chevereto.com/docs/api-v1
|
||||
// 上传图片测试
|
||||
public function chevereto_post()
|
||||
{
|
||||
// 1. 上传本地文件时应使用 $fields post base64_encode方法
|
||||
// Always use POST when uploading local files. Url encoding may alter the base64 source
|
||||
// due to encoded characters or just by URL request length limit due to GET request.
|
||||
// base64编码 会导致过长 url request
|
||||
// var_dump($_FILES); 参考 uploadimg 可以做一些前置校验处理 // 前置判断 if (empty($_FILES) === false)
|
||||
$key = '5486424e4dfb6b87453dd4bb25c0dcb0';
|
||||
$url = 'http://172.17.1.110/chevereto/api/1/upload';
|
||||
|
||||
// What do we send to chevereto api?
|
||||
$fields = array(
|
||||
'key' => urlencode($key),
|
||||
// The image encoded in base64
|
||||
'source' => base64_encode(file_get_contents($_FILES["file"]['tmp_name'])),
|
||||
// format: txt / json txt 只返回图片地址或错误信息 eg.Duplicated upload 较为简洁
|
||||
'format' => urlencode('json')
|
||||
);
|
||||
|
||||
//open connection
|
||||
$ch = curl_init();
|
||||
|
||||
//set the url, number of POST vars, POST data
|
||||
curl_setopt($ch, CURLOPT_URL, $url);
|
||||
curl_setopt($ch, CURLOPT_POST, sizeof($fields));
|
||||
curl_setopt($ch, CURLOPT_HEADER, false);
|
||||
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
|
||||
curl_setopt($ch, CURLOPT_TIMEOUT, 240);
|
||||
curl_setopt($ch, CURLOPT_POSTFIELDS, $fields);
|
||||
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Expect: '));
|
||||
|
||||
//execute post
|
||||
$result = curl_exec($ch);
|
||||
//释放curl句柄
|
||||
curl_close($ch);
|
||||
echo $result;
|
||||
//close connection
|
||||
|
||||
// 2. 上传远程图片地址可使用 _get source=urlencode{source} 方法即可
|
||||
|
||||
// $key = '6a55c7f9fa13813c2da613dc7b5b920b';
|
||||
// // 设定远程图片地址
|
||||
// $source = 'https://img3.doubanio.com/view/group_topic/large/public/p67032015.jpg';
|
||||
// // format: txt / json txt 只返回图片地址或错误信息 eg.Duplicated upload 较为简洁
|
||||
// $url = 'http://172.17.1.110:8888/api/1/upload/?key={key}&source={source}&format=txt';
|
||||
// $url = str_replace(array('{key}','{source}'),array($key,urlencode($source)),$url);
|
||||
//
|
||||
// //初始化
|
||||
// $ch = curl_init();
|
||||
// //设置选项,包括URL
|
||||
// curl_setopt($ch, CURLOPT_URL, $url);
|
||||
// curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
|
||||
// curl_setopt($ch, CURLOPT_HEADER, 0);
|
||||
// //执行并获取HTML文档内容
|
||||
// $output = curl_exec($ch);
|
||||
// //释放curl句柄
|
||||
// curl_close($ch);
|
||||
// echo $output;
|
||||
|
||||
|
||||
// 失败
|
||||
// {
|
||||
// "status_txt": "Bad Request",
|
||||
// "error": {
|
||||
// "context": "Exception",
|
||||
// "code": 102,
|
||||
// "message": "Duplicated upload"
|
||||
// },
|
||||
// "status_code": 400
|
||||
// }
|
||||
// 成功
|
||||
// {
|
||||
// "status_txt": "OK",
|
||||
// "image": {
|
||||
// "image": {
|
||||
// "size": "89163",
|
||||
// "url": "http://172.17.1.110:8888/images/2019/07/09/p67032015.jpg",
|
||||
// "extension": "jpg",
|
||||
// "mime": "image/jpeg",
|
||||
// "name": "p67032015",
|
||||
// "filename": "p67032015.jpg"
|
||||
// },
|
||||
// },
|
||||
// "success": {
|
||||
// "code": 200,
|
||||
// "message": "image uploaded"
|
||||
// },
|
||||
// "status_code": 200
|
||||
// }
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user