296 lines
7.4 KiB
PHP
296 lines
7.4 KiB
PHP
<?php
|
|
class loginClassAction extends apiAction
|
|
{
|
|
public function checkAction()
|
|
{
|
|
$adminuser = str_replace(' ','',$this->rock->jm->base64decode($this->post('user')));
|
|
$adminpass = $this->rock->jm->base64decode($this->post('pass'));
|
|
$arr = m('login')->start($adminuser, $adminpass);
|
|
if(is_array($arr)){
|
|
|
|
if(isset($arr['mobile'])){
|
|
$this->showreturn($arr, $arr['msg'], 205);
|
|
}
|
|
|
|
$arrs = array(
|
|
'uid' => $arr['uid'],
|
|
'name' => $arr['name'],
|
|
'user' => $arr['user'],
|
|
'ranking' => $arr['ranking'],
|
|
'deptname' => $arr['deptname'],
|
|
'deptallname' => $arr['deptallname'],
|
|
'face' => $arr['face'],
|
|
'apptx' => $arr['apptx'],
|
|
'loginyzm' => (int)getconfig('loginyzm','0'),
|
|
'token' => $arr['token'],
|
|
'iskq' => (int)m('userinfo')->getmou('iskq', $arr['uid']), //判断是否需要考勤
|
|
'title' => getconfig('apptitle'),
|
|
'weblogo' => getconfig('weblogo')
|
|
);
|
|
|
|
$uid = $arr['uid'];
|
|
$name = $arr['name'];
|
|
$user = $arr['user'];
|
|
$token = $arr['token'];
|
|
m('login')->setsession($uid, $name, $token, $user);
|
|
$this->showreturn($arrs);
|
|
}else{
|
|
$this->showreturn('', $arr, 201);
|
|
}
|
|
}
|
|
|
|
public function loginexitAction()
|
|
{
|
|
m('login')->exitlogin('', $this->token);
|
|
$this->showreturn('');
|
|
}
|
|
|
|
/**
|
|
* app登录页面初始化
|
|
*/
|
|
public function appinitAction()
|
|
{
|
|
$arrs = array(
|
|
'loginyzm' => (int)getconfig('loginyzm','0'),
|
|
'title' => getconfig('apptitle'),
|
|
'apptheme' => getconfig('apptheme'),
|
|
'titleall' => TITLE,
|
|
'regtype' => getconfig('regtype','0'), //是否可注册1,可注册
|
|
);
|
|
|
|
$this->showreturn($arrs);
|
|
}
|
|
|
|
/**
|
|
* 下载图片
|
|
*/
|
|
public function downimgAction()
|
|
{
|
|
$paths= $this->getvals('path');
|
|
$path = str_replace(URL, '', $paths);
|
|
$obj = c('upfile');
|
|
$str = '';
|
|
$ext = $obj->getext($path);
|
|
if($obj->isimg($ext) && file_exists($path)){
|
|
$str = base64_encode(file_get_contents($path));
|
|
}
|
|
$this->showreturn(array(
|
|
'result' => $str,
|
|
'path' => $paths
|
|
));
|
|
}
|
|
|
|
/**
|
|
* 下载图片新
|
|
*/
|
|
public function downimgnewAction()
|
|
{
|
|
$paths= urldecode($this->get('path'));
|
|
$path = str_replace(URL, '', $paths);
|
|
$obj = c('upfile');
|
|
$str = '';
|
|
$ext = $obj->getext($path);
|
|
if($obj->isimg($ext) && (file_exists($path) || substr($path,0,4)=='http')){
|
|
$str = base64_encode(file_get_contents($path));
|
|
}
|
|
$this->showreturn(array(
|
|
'result' => $str,
|
|
'path' => $paths
|
|
));
|
|
}
|
|
|
|
/**
|
|
* 读取可上传最大M
|
|
*/
|
|
public function getmaxupAction()
|
|
{
|
|
$maxup = c('upfile')->getmaxzhao();
|
|
$upkey = md5('upkey'.time().$this->jm->getRandkey());
|
|
$this->showreturn(array(
|
|
'maxup' => $maxup,
|
|
'upkey' => $upkey
|
|
));
|
|
}
|
|
|
|
/**
|
|
* 钉钉jssdk签名
|
|
*/
|
|
public function ddsignAction()
|
|
{
|
|
$bo = m('dingding:signjssdk');
|
|
$corpId = $bo->readwxset();
|
|
$agentid= $this->post('agentid');
|
|
if(isempt($agentid))$agentid = $this->rock->session('wxqyagentid');
|
|
if(isempt($corpId) || isempt($agentid)){
|
|
$arr['corpId'] = '';
|
|
}else{
|
|
$url = $this->getvals('url');
|
|
$arr = $bo->getsignsdk($url);
|
|
$arr['agentId'] = $agentid;
|
|
}
|
|
$this->showreturn($arr);
|
|
}
|
|
|
|
/**
|
|
* 获取钉钉企业Id
|
|
*/
|
|
public function ddqiyeidAction()
|
|
{
|
|
$this->showreturn(array(
|
|
'qiyeid' => $this->option->getval('dingding_qiyeid')
|
|
));
|
|
}
|
|
|
|
/**
|
|
* 钉钉获取登录
|
|
*/
|
|
public function dingcheckAction()
|
|
{
|
|
$code = $this->post('code');
|
|
$barr = m('dingding:user')->getuserjssdk($code);
|
|
if($barr['errcode']!=0){
|
|
$this->showreturn('', $barr['msg'], 201);
|
|
}else{
|
|
$this->showreturn($barr);
|
|
}
|
|
}
|
|
|
|
//初始化验证
|
|
public function initsetAction()
|
|
{
|
|
$call = $this->get('callback');
|
|
$barr['title'] = getconfig('reimtitle','REIM');
|
|
$barr['stype'] = 'new';
|
|
$barr['version']= VERSION;
|
|
echo ''.$call.'('.json_encode($barr).')';
|
|
}
|
|
|
|
public function inauthAction()
|
|
{
|
|
$call = $this->get('callback');
|
|
$barr['host'] = HOST;
|
|
echo ''.$call.'('.json_encode($barr).')';
|
|
}
|
|
|
|
|
|
public function getewmAction()
|
|
{
|
|
$randkey = $this->get('randkey');
|
|
if(isempt($randkey))return;
|
|
$dfrom = $this->get('dfrom');
|
|
$key = md5($randkey);
|
|
c('cache')->set($key,'-2',70);
|
|
|
|
header("Content-type:image/png");
|
|
$url = ''.getconfig('outurl', URL).'?m=logn&d=we&randkey='.$key.'&dfrom='.$dfrom.'';
|
|
if(COMPANYNUM)$url.='&dwnum='.COMPANYNUM.'';
|
|
$img = c('qrcode')->show($url);
|
|
echo $img;
|
|
}
|
|
public function checkewmAction()
|
|
{
|
|
$randkey = $this->get('randkey');
|
|
$key = md5($randkey);
|
|
$val = c('cache')->get($key);
|
|
|
|
$data['val'] = $val;
|
|
if(isempt($randkey))$this->showreturn($data);
|
|
if($val>'0'){
|
|
$dbs = m('admin');
|
|
$urs = $dbs->getone("`id`='$val' and `status`=1",'`id`,`name`,`user`,`face`,`pass`');
|
|
if(!$urs){
|
|
$val = '-1';
|
|
}else{
|
|
c('cache')->set('login'.$urs['user'].'', $urs['id'], 60);
|
|
$data['user'] = $urs['user'];
|
|
$data['face'] = $dbs->getface($urs['face']);
|
|
$data['pass'] = md5($urs['pass']);
|
|
c('cache')->del($key);
|
|
}
|
|
}
|
|
$data['val'] = $val;
|
|
$this->showreturn($data);
|
|
}
|
|
|
|
/**
|
|
* 创建二维码
|
|
*/
|
|
public function ewmAction()
|
|
{
|
|
header("Content-type:image/png");
|
|
$url = $this->jm->base64decode($this->get('url'));
|
|
if(substr($url,0,4)!='http')$url =''.$this->rock->getouturl().''.$url.'';
|
|
$img = c('qrcode')->show($url);
|
|
echo $img;
|
|
}
|
|
|
|
/**
|
|
* 安卓检查是否有app更新
|
|
*/
|
|
public function appupdateAction()
|
|
{
|
|
$nowver = getconfig('app_version');//app的版本
|
|
$ver = $this->get('ver');
|
|
$barr['success'] = false;
|
|
$path = getconfig('app_verpath','images/app.apk');//app文件版本
|
|
if(!isempt($nowver) && file_exists($path) && $ver<$nowver){
|
|
$barr['success'] = true;
|
|
$barr['version'] = $nowver;
|
|
$barr['size'] = '3.2M';
|
|
$barr['updateurl'] = ''.URL.''.$path.'';
|
|
$barr['explain'] = getconfig('app_verremark','完善推送功能');
|
|
}
|
|
echo json_encode($barr);
|
|
}
|
|
|
|
/**
|
|
* reim平台快捷登录到oa
|
|
*/
|
|
public function reimplatloginAction()
|
|
{
|
|
return m('reimplat:oauth')->login();
|
|
}
|
|
|
|
/**
|
|
* 验证小程序地址
|
|
*/
|
|
public function yzxcyAction()
|
|
{
|
|
$openid = $this->get('openid');
|
|
$mobile = $this->get('mobile');
|
|
if(!$openid || !$mobile)return returnerror('err');
|
|
$mobile = $this->jm->base64decode($mobile);
|
|
if(!c('check')->iscnmobile($mobile))return returnerror('err2');
|
|
$where = "`mobile`='$mobile'";
|
|
if(m('admin')->rows($where)==0 && m('customer')->rows($where)==0 )return retuenerror('此手机号没在我们系统登记过');
|
|
$na = getconfig('titleout');
|
|
if(!$na)$na = TITLE;
|
|
return returnsuccess(array(
|
|
'name' => $na,
|
|
'key' => md5(getconfig('openkey')),
|
|
'logo' => 'images/logo.png'
|
|
));
|
|
}
|
|
|
|
/**
|
|
* 获取第三方上传图片地址
|
|
*/
|
|
public function upimagepathAction()
|
|
{
|
|
$fileid = (int)$this->get('fileid');
|
|
$fid = $this->get('fid');
|
|
$adddt = date('Y-m-d H:i:s', time()-20);
|
|
$frs = m('file')->getone("`id`='$fileid' and `adddt`>'$adddt'");
|
|
if(!$frs)return returnerror('404');
|
|
$path = '';
|
|
if(!isempt($frs['thumbplat'])){
|
|
$path = str_replace('_s.','.',$frs['thumbplat']);
|
|
}
|
|
$filepathout = arrvalue($frs,'filepathout');
|
|
if($filepathout)$path = $filepathout;
|
|
return returnsuccess(array(
|
|
'path' => $path,
|
|
'fid' => $fid,
|
|
));
|
|
}
|
|
} |