| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203 |
- <?php
- namespace App\Http\Controllers;
- use App\Module\Base;
- use App\Module\Users;
- use Redirect;
- use Request;
- /**
- * 页面
- * Class IndexController
- * @package App\Http\Controllers
- */
- class IndexController extends Controller
- {
- private $version = '100000';
- public function __invoke($method, $action = '', $child = '', $name = '')
- {
- $app = $method ? $method : 'main';
- if ($app == 'uploads') {
- $child = $action . '/' . $child . '/' . $name;
- $action = '';
- }
- if ($action) {
- $app .= "__" . $action;
- }
- @error_reporting(E_ALL & ~E_NOTICE);
- if (Request::input('__Access-Control-Allow-Origin')) {
- header('Access-Control-Allow-Origin:*');
- header('Access-Control-Allow-Methods:GET,POST,PUT,DELETE,OPTIONS');
- header('Access-Control-Allow-Headers:Content-Type, platform, platform-channel, token, release, Access-Control-Allow-Origin');
- }
- return (method_exists($this, $app)) ? $this->$app($child) : Base::ajaxError("404 not found (" . str_replace("__", "/", $app) . ").");
- }
- /**
- * 获取IP地址
- * @return array|mixed
- */
- public function get__ip() {
- return Base::getIp();
- }
- /**
- * 是否中国IP地址
- * @return array|mixed
- */
- public function get__cnip() {
- return Base::isCnIp(Request::input('ip'));
- }
- /**
- * 获取IP地址详细信息
- * @return array|mixed
- */
- public function get__ipinfo() {
- return Base::getIpInfo(Request::input("ip"));
- }
- /**
- * 首页
- * @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View
- */
- public function main()
- {
- return view('main', ['version' => $this->version]);
- }
- /**
- * 接口文档
- * @return \Illuminate\Http\RedirectResponse
- */
- public function api()
- {
- return Redirect::to(Base::fillUrl('docs'), 301);
- }
- /**
- * 上传图片
- * @return array
- */
- public function api__imgupload()
- {
- if (Users::token2userid() === 0) {
- return Base::retError('身份失效,等重新登录!');
- }
- $scale = [intval(Request::input('width')), intval(Request::input('height'))];
- if (!$scale[0] && !$scale[1]) {
- $scale = [2160, 4160, -1];
- }
- $data = Base::upload([
- "file" => Request::file('image'),
- "type" => 'image',
- "path" => "uploads/picture/" . Users::token2userid() . "/" . date("Ym") . "/",
- "scale" => $scale
- ]);
- if (Base::isError($data)) {
- return Base::retError($data['msg']);
- } else {
- return Base::retSuccess('success', $data['data']);
- }
- }
- /**
- * 浏览图片空间
- * @return array
- */
- public function api__imgview()
- {
- if (Users::token2userid() === 0) {
- return Base::retError('身份失效,等重新登录!');
- }
- $publicPath = "uploads/picture/" . Users::token2userid() . "/";
- $dirPath = public_path($publicPath);
- $dirs = $files = [];
- //
- $path = Request::input('path');
- if ($path && is_string($path)) {
- $path = str_replace(array('||', '|'), '/', $path);
- $path = trim($path, '/');
- $path = str_replace('..', '', $path);
- $path = Base::leftDelete($path, $publicPath);
- if ($path) {
- $path = $path . '/';
- $dirPath .= $path;
- //
- $dirs[] = [
- 'type' => 'dir',
- 'title' => '...',
- 'path' => substr(substr($path, 0, -1), 0, strripos(substr($path, 0, -1), '/')),
- 'url' => '',
- 'thumb' => Base::fillUrl('images/dir.png'),
- 'inode' => 0,
- ];
- }
- } else {
- $path = '';
- }
- $list = glob($dirPath . '*', GLOB_BRACE);
- foreach ($list as $v) {
- $filename = basename($v);
- $pathTemp = $publicPath . $path . $filename;
- if (is_dir($v)) {
- $dirs[] = [
- 'type' => 'dir',
- 'title' => $filename,
- 'path' => $pathTemp,
- 'url' => Base::fillUrl($pathTemp),
- 'thumb' => Base::fillUrl('images/dir.png'),
- 'inode' => fileatime($v),
- ];
- } elseif (substr($filename, -10) != "_thumb.jpg") {
- $array = [
- 'type' => 'file',
- 'title' => $filename,
- 'path' => $pathTemp,
- 'url' => Base::fillUrl($pathTemp),
- 'thumb' => $pathTemp,
- 'inode' => fileatime($v),
- ];
- //
- $extension = pathinfo($dirPath . $filename, PATHINFO_EXTENSION);
- if (in_array($extension, array('gif', 'jpg', 'jpeg', 'png', 'bmp'))) {
- if (file_exists($dirPath . $filename . '_thumb.jpg')) {
- $array['thumb'] .= '_thumb.jpg';
- }
- $array['thumb'] = Base::fillUrl($array['thumb']);
- $files[] = $array;
- }
- }
- }
- if ($dirs) {
- $inOrder = [];
- foreach ($dirs as $key => $item) {
- $inOrder[$key] = $item['title'];
- }
- array_multisort($inOrder, SORT_DESC, $dirs);
- }
- if ($files) {
- $inOrder = [];
- foreach ($files as $key => $item) {
- $inOrder[$key] = $item['inode'];
- }
- array_multisort($inOrder, SORT_DESC, $files);
- }
- //
- return Base::retSuccess('success', ['dirs' => $dirs, 'files' => $files]);
- }
- /**
- * 清理opcache数据
- * @return int
- */
- public function opcache__reset()
- {
- opcache_reset();
- return Base::time();
- }
- }
|