Admin.php 12.0 KB
Newer Older
H
Init  
HFO4 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448
<?php
namespace app\index\controller;

use think\Controller;
use app\index\model\User;
use think\Cookie;
use think\Db;
use \app\index\model\Option;
use \app\index\model\AdminHandler;
use \app\index\model\FileManage;

class Admin extends Controller{

	public $userObj;
	public $siteOptions;
	public $adminObj;

	public function _initialize(){
		$this->siteOptions = Option::getValues(["basic","admin"]);
		$this->userObj = new User(cookie('user_id'),cookie('login_key'));
		if(!$this->userObj->loginStatus){
			$this->redirect(url('/Login','',''));
			exit();
		}
		if($this->userObj->groupData["id"] != 1){
			$this->error('你无权访问此页面',403,$this->siteOptions);
		}
		$this->adminObj = new AdminHandler($this->siteOptions);
	}

	public function index(){
		return view('admin_index', [
			'options'  => $this->siteOptions,
			'statics' => $this->adminObj->getStatics(),
		]);
	}

	public function Setting(){
		return view('basic_setting', [
			'options'  => $this->siteOptions,
		]);
	}

	public function Config(){
		$configType=input("?param.type") ? input("param.type") : "common";
		$configFile = $this->adminObj->getConfigFile($configType);
		return view('config_file', [
			'options'  => $this->siteOptions,
			'type' => $configType,
			'content' =>  $configFile[0],
			'path' => $configFile[1],
		]);
	}

	public function SaveConfigFile(){
		return $this->adminObj->saveConfigFile(input('post.'));
	}

	public function SettingReg(){
		return view('reg_setting', [
			'options'  => $this->siteOptions,
			'optionsForSet'  =>  Option::getValues(["login","register"]),
			'groups' => $this->adminObj->getAvaliableGroup(),
		]);
	}

	public function Theme(){
		$fileName=input("?param.name") ? input("param.name") : "error";
		$dir = ROOT_PATH."application/index/view/";
		if(!function_exists("scandir")){
			return "scandir被禁用";
		}
		$fileList=[];
		$fileList=$fileList+scandir($dir);
		$pathList=["/"=>$fileList];
		foreach (["admin","explore","file","home","index","member","profile","share"] as $key => $value) {
			$childPath = scandir($dir.$value."/");
			$fileList=array_merge($fileList,$childPath);
			$pathList = array_merge($pathList,[$value => $childPath]);
		}
		foreach ($fileList as $key => $value) {
			if(substr_compare($value, ".html", -strlen(".html")) != 0){
				unset($fileList[$key]);
			}
		}
		foreach($pathList as $key=>$val){
		    if(in_array($fileName.".html",$val)){
		        $parentPath = $key;
		        break;
		    }
		}
		$fileContent = file_get_contents($dir.rtrim($parentPath,"/")."/".$fileName.".html");
		return view('theme', [
			'options'  => $this->siteOptions,
			'list' => $fileList,
			'content' =>  $fileContent,
			'path' => $parentPath,
			'name' => $fileName,
		]);
	}

	public function SaveThemeFile(){
		return $this->adminObj->saveThemeFile(input('post.'));
	}

	public function SettingMail(){
		return view('mail_setting', [
			'options'  => $this->siteOptions,
			'optionsForSet'  =>  Option::getValues(["mail_template","mail"]),
		]);
	}

	public function SettingPay(){
		return view('pay_setting', [
			'options'  => $this->siteOptions,
			'optionsForSet'  =>  Option::getValues(["payment"]),
		]);
	}

	public function SettingOther(){
		return view('other_setting', [
			'options'  => $this->siteOptions,
			'optionsForSet'  =>  Option::getValues(["file_edit","share","avatar","admin","storage_policy"]),
		]);
	}

	public function Files(){
		$this->adminObj->listFile();
		return view('file_list', [
			'options'  => $this->siteOptions,
			'groups' => $this->adminObj->getAvaliableGroup(),
			'list' => $this->adminObj->pageData,
			'originList' => $this->adminObj->listData,
			'pageNow' => $this->adminObj->pageNow,
			'pageTotal' => $this->adminObj->pageTotal,
			'dataTotal' => $this->adminObj->dataTotal,
			'policy' => $this->adminObj->getAvaliablePolicy(),
		]);
	}

	Public function Users(){
		$this->adminObj->listUser();
		$group = $this->adminObj->getAvaliableGroup();
		return view('user_list', [
			'options'  => $this->siteOptions,
			'group' => $group,
			'groups' => $group,
			'list' => $this->adminObj->pageData,
			'originList' => $this->adminObj->listData,
			'pageNow' => $this->adminObj->pageNow,
			'pageTotal' => $this->adminObj->pageTotal,
			'dataTotal' => $this->adminObj->dataTotal,
			'policy' => $this->adminObj->getAvaliablePolicy(),
		]);
	}

	public function Shares(){
		$this->adminObj->listShare();
		return view('share_list', [
			'options'  => $this->siteOptions,
			'groups' => $this->adminObj->getAvaliableGroup(),
			'list' => $this->adminObj->pageData,
			'originList' => $this->adminObj->listData,
			'pageNow' => $this->adminObj->pageNow,
			'pageTotal' => $this->adminObj->pageTotal,
			'dataTotal' => $this->adminObj->dataTotal,
		]);
	}

	public function PolicyList(){
		$this->adminObj->listPolicy();
		return view('policy_list', [
			'options'  => $this->siteOptions,
			'groups' => $this->adminObj->getAvaliableGroup(),
			'list' => $this->adminObj->pageData,
			'originList' => $this->adminObj->listData,
			'pageNow' => $this->adminObj->pageNow,
			'pageTotal' => $this->adminObj->pageTotal,
			'dataTotal' => $this->adminObj->dataTotal,
		]);
	}

	public function GroupList(){
		$this->adminObj->listGroup();
		return view('group_list', [
			'options'  => $this->siteOptions,
			'list' => $this->adminObj->pageData,
			'originList' => $this->adminObj->listData,
			'pageNow' => $this->adminObj->pageNow,
			'pageTotal' => $this->adminObj->pageTotal,
			'dataTotal' => $this->adminObj->dataTotal,
		]);
	}

	public function OrderList(){
		$this->adminObj->listOrder();
		return view('order_list', [
			'options'  => $this->siteOptions,
			'list' => $this->adminObj->pageData,
			'originList' => $this->adminObj->listData,
			'pageNow' => $this->adminObj->pageNow,
			'pageTotal' => $this->adminObj->pageTotal,
			'dataTotal' => $this->adminObj->dataTotal,
		]);
	}

	public function SaveBasicSetting(){
		return $this->adminObj->saveBasicSetting(input('post.'));
	}

	public function SaveRegSetting(){
		return $this->adminObj->saveRegSetting(input('post.'));
	}

	public function SaveMailSetting(){
		return $this->adminObj->saveMailSetting(input('post.'));
	}

	public function SendTestMail(){
		return $this->adminObj->sendTestMail(input('post.'));
	}

	public function SaveMailTemplate(){
		return $this->adminObj->saveMailTemplate(input('post.'));
	}

	public function GetFileInfo(){
		return $this->adminObj->getFileInfo(input('post.id'));
	}

	public function GetUserInfo(){
		return $this->adminObj->getUserInfo(input('post.id'));
	}

	public function savePolicy(){
		return $this->adminObj->addPolicy(input('post.'));
	}

	public function SaveEditPolicy(){
		return $this->adminObj->editPolicy(input('post.'));
	}

	public function SaveGroup(){
		return $this->adminObj->saveGroup(input('post.'));
	}

	public function AddPack(){
		return $this->adminObj->addPack(input('post.'));
	}

	public function AddGroupPurchase(){
		return $this->adminObj->addGroupPurchase(input('post.'));
	}

	public function SaveCron(){
		$this->adminObj->saveCron(input('post.'));
		$this->redirect("/Admin/Cron",302);
	}

	public function SaveUser(){
		return $this->adminObj->saveUser(input('post.'));
	}

	public function BanUser(){
		return $this->adminObj->banUser(input('post.id'),$this->userObj->uid);
	}

	public function AddUser(){
		return $this->adminObj->addUser(input('post.'));
	}

	public function Preview(){
		$fileId = input('param.id');
		$fileRecord = Db::name("files")->where("id",$fileId)->find();
		$fileObj = new FileManage(rtrim($fileRecord["dir"],"/")."/".$fileRecord["orign_name"],$fileRecord["upload_user"]);
		$previewHandler = $fileObj->PreviewHandler(true);
		if($previewHandler[0]){
			$this->redirect($previewHandler[1],302);
		}
	}

	public function Download(){
		$fileId = input('param.id');
		$fileRecord = Db::name("files")->where("id",$fileId)->find();
		$fileObj = new FileManage(rtrim($fileRecord["dir"],"/")."/".$fileRecord["orign_name"],$fileRecord["upload_user"]);
		$FileHandler = $fileObj->Download(true);
		if($FileHandler[0]){
			$this->redirect($FileHandler[1],302);
		}
	}

	public function Delete(){
		return $this->adminObj->deleteSingle(input('post.id'));
	}

	public function DeleteShare(){
		return $this->adminObj->deleteShare([0=>input('post.id')]);
	}

	public function DeleteShareMultiple(){
		return $this->adminObj->deleteShare(json_decode(input('post.id'),true));
	}

	public function DeleteMultiple(){
		return $this->adminObj->deleteMultiple(input('post.id'));
	}

	public function DeletePolicy(){
		return $this->adminObj->deletePolicy(input('post.id'));
	}

	public function DeleteGroup(){
		return $this->adminObj->deleteGroup(input('post.id'));
	}

	public function DeleteOrder(){
		return $this->adminObj->deleteOrder(input('post.id'));
	}

	public function ChangeShareType(){
		return $this->adminObj->changeShareType(input('post.id'));
	}

	public function DeletePack(){
		return $this->adminObj->deletePack(input('post.id'));
	}

	public function DeleteGroupPurchase(){
		return $this->adminObj->deleteGroupPurchase(input('post.id'));
	}

	public function DeleteUser(){
		return $this->adminObj->deleteUser(input('post.id'),$this->userObj->uid);
	}

	public function DeleteUsers(){
		$uidGroup = json_decode(input('post.id'),true);
		foreach ($uidGroup as $key => $value) {
			$this->adminObj->deleteUser($value,$this->userObj->uid);
		}
		return ["error"=>false,"msg"=>"删除成功"];
	}

	public function SwitchColor(){
		$colorNow = Option::getValues(["admin"]);
		if($colorNow["admin_color_body"] == "fixed-nav sticky-footer bg-light"){
			$colorNew = [
				"admin_color_body" => "fixed-nav sticky-footer bg-dark",
				"admin_color_nav" => "navbar navbar-expand-lg fixed-top navbar-dark bg-dark",
			];
		}else{
			$colorNew = [
				"admin_color_body" => "fixed-nav sticky-footer bg-light",
				"admin_color_nav" => "navbar navbar-expand-lg fixed-top navbar-light bg-light",
			];
		}
		foreach ($colorNew as $key => $value) {
			Db::name("options")->where("option_name",$key)->update(["option_value" => $value]);
		}
	}

	public function EditPolicy(){
		$policyId = input('param.id');
		$policyRecord = Db::name("policy")->where("id",$policyId)->find();
		return view('edit_policy', [
			'options' => $this->siteOptions,
			'policy' => $policyRecord,
		]);
	}

	public function EditGroup(){
		$groupId = input('param.id');
		$groupRecord = Db::name("groups")->where("id",$groupId)->find();
		return view('edit_group', [
			'options' => $this->siteOptions,
			'group' => $groupRecord,
			'policy' => $this->adminObj->getAvaliablePolicy(),
		]);
	}

	public function AddGroup(){
		return $this->adminObj->addGroup(input('post.'));
	}

	public function PolicyAdd(){
		return view('add_policy', [
			'options' => $this->siteOptions,
		]);
	}

	public function Cron(){
		$cronData = Db::name("corn")->select();
		$neverExcute = true;
		foreach ($cronData as $key => $value) {
			if($value["last_excute"] !=0){
				$neverExcute = false;
			}
		}
		return view('cron_list', [
			'options' => $this->siteOptions,
			'cron' => $cronData,
			'neverExcute' => $neverExcute,
		]);
	}

	public function PolicyAddS3(){
		return view('add_policy_s3', [
			'options' => $this->siteOptions,
		]);
	}

	public function About(){
		$verison = json_decode(file_get_contents(ROOT_PATH . "application/version.json"),true);
		return view('about', [
			'options' => $this->siteOptions,
			'programVersion' => $verison,
			"dbsVersion" => Option::getValue("database_version"),
		]);
	}

	public function Purchase(){
		$packData = json_decode(Option::getValue("pack_data"),true);
		return view('purchase', [
			'options' => $this->siteOptions,
			'pack' => $packData,
		]);
	}

	public function PurchaseGroup(){
		$groupData = json_decode(Option::getValue("group_sell_data"),true);
		foreach ($groupData as $key => $value) {
			$groupData[$key]["group"] = Db::name("groups")->where("id",$value["goup_id"])->find();
		}
		return view('purchase_group', [
			'options' => $this->siteOptions,
			'group' => $groupData,
			'group_list' => $this->adminObj->getAvaliableGroup(),
		]);
	}

	public function GroupAdd(){
		return view('add_group', [
			'options' => $this->siteOptions,
			'policy' => $this->adminObj->getAvaliablePolicy(),
		]);
	}
	
}