feat: 项目基础框架+配置+Kernel
This commit is contained in:
@@ -0,0 +1,91 @@
|
||||
<?php
|
||||
/**
|
||||
* User: LDH
|
||||
*/
|
||||
namespace App;
|
||||
use App\Utils\RPC;
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
use Illuminate\Support\Facades\DB;
|
||||
|
||||
/**
|
||||
* 系统设置项
|
||||
* @package App
|
||||
*/
|
||||
class Setting extends Model
|
||||
{
|
||||
protected $table = 'settings';
|
||||
public $timestamps = false;
|
||||
protected $fillable = ['key', 'value'];
|
||||
|
||||
public static function getValueByKey($key = "",$defalut = ""){
|
||||
if(empty($key))
|
||||
return $defalut;
|
||||
$settings = self::where('key', $key)->orderBy('id', 'DESC')->first();
|
||||
if(empty($settings)){
|
||||
return $defalut;
|
||||
}else{
|
||||
return $settings->value;
|
||||
}
|
||||
}
|
||||
public static function updateValueByKey($key = "",$value = ""){
|
||||
if(empty($key))
|
||||
return false;
|
||||
$settings = self::where('key', $key)->orderBy('id', 'DESC')->first();
|
||||
if(empty($settings)){
|
||||
$setting = new self();
|
||||
}else{
|
||||
$setting = self::find($settings->id);
|
||||
}
|
||||
$setting->key = $key;
|
||||
$setting->value = $value;
|
||||
$setting->save();
|
||||
return true;
|
||||
}
|
||||
public static function getValueByExplode($key = ""){
|
||||
if(empty($key))
|
||||
return "";
|
||||
$settings = self::where('key', $key)->orderBy('id', 'DESC')->first();
|
||||
if(empty($settings)){
|
||||
return "";
|
||||
}else{
|
||||
$settings = explode("|",$settings->value);
|
||||
return $settings;
|
||||
}
|
||||
}
|
||||
public static function sendSmsForSmsBao($mobile,$content)
|
||||
{
|
||||
try{
|
||||
$username = self::getValueByKey('smsBao_username', '');
|
||||
$password = self::getValueByKey('password', '=');
|
||||
if (empty($mobile)){
|
||||
throw new \Exception('请填写手机号');
|
||||
}
|
||||
|
||||
if (empty($content)) {
|
||||
throw new \Exception('请填写发送内容');
|
||||
}
|
||||
$format_content = '【MTS】';
|
||||
$api = 'http://api.smsbao.com/sms';
|
||||
$send_url = $api . "?u=" . $username . "&p=" . md5($password) . "&m=" . $mobile . "&c=" . urlencode($format_content.$content);
|
||||
$return_message = RPC::apihttp($send_url);
|
||||
if ($return_message == 0) {
|
||||
return true;
|
||||
} else {
|
||||
$statusStr = array(
|
||||
"-1" => "参数不全",
|
||||
"-2" => "服务器空间不支持,请确认支持curl或者fsocket,联系您的空间商解决或者更换空间!",
|
||||
"30" => "密码错误",
|
||||
"40" => "账号不存在",
|
||||
"41" => "余额不足",
|
||||
"42" => "帐户已过期",
|
||||
"43" => "IP地址限制",
|
||||
"50" => "内容含有敏感词"
|
||||
);
|
||||
throw new \Exception($statusStr[$return_message]);
|
||||
}
|
||||
}catch (\Exception $exception){
|
||||
throw new \Exception($exception->getMessage());
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user