Files
tougao/application/api/controller/Publish.php
wangjinlei 3ef453e917 1
2022-10-24 18:02:57 +08:00

391 lines
13 KiB
PHP

<?php
namespace app\api\controller;
use think\Controller;
use think\Db;
use think\Queue;
use think\Validate;
/**
* @title 公共管理相关
* @description 公共管理相关
*/
class Publish extends Controller
{
protected $article_obj = '';
protected $user_obj = '';
protected $user_act_obj = '';
protected $journal_obj = '';
protected $user_log_obj = '';
protected $user_reviewer_info_obj = '';
protected $reviewer_major_obj = '';
protected $reviewer_to_journal_obj = '';
protected $article_reviewer_question_obj = '';
protected $article_msg_obj = '';
protected $article_file_obj = '';
protected $article_reviewer_obj = '';
protected $article_author_obj = '';
protected $article_transfer_obj = '';
protected $chief_to_journal_obj = '';
protected $login_auto_obj = '';
protected $major_obj = "";
protected $major_to_journal_obj = '';
protected $reviewer_from_author_obj = '';
protected $article_dialog_obj = '';
protected $article_proposal_obj = '';
protected $user_black_obj = '';
protected $user_reviewer_recommend_obj = '';
protected $ts_obj = '';
protected $ts_refer_obj = '';
protected $ts_frag_obj = '';
protected $online_obj = '';
public function __construct(\think\Request $request = null)
{
parent::__construct($request);
$this->user_obj = Db::name('user');
$this->user_act_obj = Db::name('user_act');
$this->article_obj = Db::name('article');
$this->journal_obj = Db::name('journal');
$this->user_log_obj = Db::name('user_log');
$this->user_reviewer_info_obj = Db::name("user_reviewer_info");
$this->reviewer_major_obj = Db::name('reviewer_major');
$this->reviewer_to_journal_obj = Db::name('reviewer_to_journal');
$this->article_reviewer_question_obj = Db::name('article_reviewer_question');
$this->article_msg_obj = Db::name('article_msg');
$this->article_file_obj = Db::name('article_file');
$this->article_reviewer_obj = Db::name('article_reviewer');
$this->article_author_obj = Db::name('article_author');
$this->article_transfer_obj = Db::name('article_transfer');
$this->chief_to_journal_obj = Db::name('chief_to_journal');
$this->login_auto_obj = Db::name('login_auto');
$this->major_obj = Db::name("major");
$this->major_to_journal_obj = Db::name('major_to_journal');
$this->reviewer_from_author_obj = Db::name("reviewer_from_author");
$this->article_dialog_obj = Db::name('article_dialog');
$this->article_proposal_obj = Db::name('article_proposal');
$this->user_black_obj = Db::name('user_black');
$this->user_reviewer_recommend_obj = Db::name('user_reviewer_recommend');
$this->ts_obj = Db::name('ts');
$this->ts_refer_obj = Db::name('ts_refer');
$this->ts_frag_obj = Db::name('ts_frag');
$this->online_obj = Db::name('online');
}
/**
* 获取online文章列表
*/
public function getOnlineList(){
$data = $this->request->post();
$rule = new Validate([
'issn'=>'require'
]);
if(!$rule->check($data)){
return jsonError($rule->getError());
}
$t_journal_info = $this->journal_obj->where('issn',$data['issn'])->find();
$url = 'http://journalapi.tmrjournals.com/public/index.php/master/Article/getOnlineArticleForSubmit';
$pra = [];
$pra['issn'] = $t_journal_info['issn'];
$res = object_to_array(json_decode(myPost($url, $pra)));
$re['stages'] = $res['data']['stages'];
return jsonSuccess($re);
}
/**
* 获取publish文章
*/
public function getPublicAiticles(){
$data = $this->request->post();
$rule = new Validate([
'issn'=>'require',
'pageIndex'=>'require',
'pageSize'=>'require'
]);
if(!$rule->check($data)){
return jsonError($rule->getError());
}
$url = 'http://journalapi.tmrjournals.com/public/index.php/master/Article/getArticleListForSubmit';
$pra = [];
$pra['issn'] = $data['issn'];
$pra['journal_stage_id'] = isset($data['journal_stage_id'])?$data['journal_stage_id']:0;
$pra['seach'] = isset($data['seach'])?trim($data['seach']):'';
$pra['pageIndex'] = $data['pageIndex'];
$pra['pageSize'] = $data['pageSize'];
$res = object_to_array(json_decode(myPost($url, $pra)));
return jsonSuccess($res['data']);
}
/**
* 提前出刊
*/
public function pushPublish(){
$data = $this->request->post();
$rule = new Validate([
'journal_stage_id'=>'require'
]);
if(!$rule->check($data)){
return jsonError($rule->getError());
}
$url = 'http://journalapi.tmrjournals.com/public/index.php/master/Journal/pushJournalPublishForSubmit';
$url1 = 'http://journalapi.tmrjournals.com/public/index.php/master/Datebase/dataPush';
$pra = [];
$pra['journal_stage_id'] = $data['journal_stage_id'];
$res = object_to_array(json_decode(myPost($url, $pra)));
$res1 = object_to_array(json_decode(myPost($url1, $pra)));
return jsonSuccess([]);
}
/**
* 获取期刊文章
*/
public function getJournalArticles(){
$data = $this->request->post();
$rule = new Validate([
'issn'=>'require'
]);
if(!$rule->check($data)){
return jsonError($rule->getError());
}
$url = 'http://journalapi.tmrjournals.com/public/index.php/master/Article/getArticleForSubmit';
$pra = [];
$pra['issn'] = $data['issn'];
$res = object_to_array(json_decode(myPost($url, $pra)));
$re['stages'] = $res['data']['stages'];
return jsonSuccess($re);
}
/**
* 获取所有分期
*/
public function getAllStages(){
$data = $this->request->post();
$rule = new Validate([
'issn'=>'require'
]);
if(!$rule->check($data)){
return jsonError($rule->getError());
}
$url = 'http://journalapi.tmrjournals.com/public/index.php/master/Article/getAllStagesForSubmit';
$pra = [];
$pra['issn'] = $data['issn'];
$res = object_to_array(json_decode(myPost($url, $pra)));
$re['stages'] = $res['data']['stages'];
return jsonSuccess($re);
}
/**
* 获取客座期刊列表
*/
public function getJournalSpecials(){
$data = $this->request->post();
$rule = new Validate([
'issn'=>'require'
]);
if(!$rule->check($data)){
return jsonError($rule->getError());
}
$url = 'http://journalapi.tmrjournals.com/public/index.php/master/Special/getSpecialByIssn';
$pra = [];
$pra['journal_issn'] = $data['issn'];
$res = object_to_array(json_decode(myPost($url, $pra)));
$re['stages'] = $res['data']['specials'];
return jsonSuccess($re);
}
/**
* 编辑文章的客座期刊信息
*/
public function editArticleToSpecial(){
$data = $this->request->post();
$rule = new Validate([
'article_id'=>'require',
'journal_special_id'=>'require'
]);
if(!$rule->check($data)){
return jsonError($rule->getError());
}
$url = 'http://journalapi.tmrjournals.com/public/index.php/master/Article/changeArticleSpecialForSubmit';
$pra = [];
$pra['article_id'] = $data['article_id'];
$pra['journal_special_id'] = $data['journal_special_id'];
$res = object_to_array(json_decode(myPost($url, $pra)));
return jsonSuccess([]);
}
/**
* 获取文章的基本信息
*/
public function getArticleDetail(){
$data = $this->request->post();
$rule = new Validate([
'article_id'=>'require'
]);
if(!$rule->check($data)){
return jsonError($rule->getError());
}
$url = 'http://journalapi.tmrjournals.com/public/index.php/master/Article/getArticleBase';
$pra = [];
$pra['article_id'] = $data['article_id'];
$res = object_to_array(json_decode(myPost($url, $pra)));
return jsonSuccess($res['data']);
}
// /**
// * 获取期刊话题
// */
// public function getJournalTopics(){
// $data = $this->request->post();
// $rule = new Validate([
// 'issn'=>'require'
// ]);
// if(!$rule->check($data)){
// return jsonError($rule->getError());
// }
// $url = 'http://journalapi.tmrjournals.com/public/index.php/master/Article/getTopicByArticle';
// $pra = [];
// $pra['article_id'] = $data['article_id'];
// $res = object_to_array(json_decode(myPost($url, $pra)));
// return jsonSuccess($res['data']);
// }
/**
* 获取文章的期刊话题列表
*/
public function getArticleTopics(){
$data = $this->request->post();
$rule = new Validate([
'article_id'=>'require'
]);
if(!$rule->check($data)){
return jsonError($rule->getError());
}
$url = 'http://journalapi.tmrjournals.com/public/index.php/master/Article/getTopicByArticle';
$pra = [];
$pra['article_id'] = $data['article_id'];
$res = object_to_array(json_decode(myPost($url, $pra)));
return jsonSuccess($res['data']);
}
/**
* 添加文章话题对应关系
*/
public function addArticleToTopic(){
$data = $this->request->post();
$rule = new Validate([
'article_id'=>'require',
'topic_id'=>'require'
]);
if(!$rule->check($data)){
return jsonError($rule->getError());
}
$url = 'http://journalapi.tmrjournals.com/public/index.php/master/Article/addTopicByArticle';
$pra = [];
$pra['article_id'] = $data['article_id'];
$pra['topic_id'] = $data['topic_id'];
$res = object_to_array(json_decode(myPost($url, $pra)));
return jsonSuccess([]);
}
/**
* 删除文章话题对应关系
*/
public function delArticleToTopic(){
$data = $this->request->post();
$rule = new Validate([
'article_to_topic_id'=>'require'
]);
if(!$rule->check($data)){
return jsonError($rule->getError());
}
$url = 'http://journalapi.tmrjournals.com/public/index.php/master/Article/delTopic';
$pra = [];
$pra['article_to_topic_id'] = $data['article_to_topic_id'];
$res = object_to_array(json_decode(myPost($url, $pra)));
return jsonSuccess([]);
}
/**
* 获取相关文章列表
*/
public function getArticleRelates(){
$data = $this->request->post();
$rule = new Validate([
'article_id'=>'require'
]);
if(!$rule->check($data)){
return jsonError($rule->getError());
}
$url = 'http://journalapi.tmrjournals.com/public/index.php/master/Article/getRelatedArticles';
$pra = [];
$pra['article_id'] = $data['article_id'];
$res = object_to_array(json_decode(myPost($url, $pra)));
return jsonSuccess($res['data']);
}
/**
* 获取关键词文章
*/
public function getKeywordArticleOrderJournal(){
$data = $this->request->post();
$rule = new Validate([
'keyword'=>'require'
]);
if(!$rule->check($data)){
return jsonError($rule->getError());
}
$url = 'http://journalapi.tmrjournals.com/public/index.php/master/Article/getKeywordArticleOrderJournalForSubmit';
$pra = [];
$pra['keyword'] = trim($data['keyword']);
$res = object_to_array(json_decode(myPost($url, $pra)));
return jsonSuccess($res['data']);
}
/**
* 添加相关文章
*/
public function addArticleRelate(){
$data = $this->request->post();
$rule = new Validate([
'article_id'=>'require',
'add_article_id'=>'require'
]);
if(!$rule->check($data)){
return jsonError($rule->getError());
}
$url = 'http://journalapi.tmrjournals.com/public/index.php/master/Article/addRelatedArticle';
$pra = [];
$pra['article_id'] = $data['article_id'];
$pra['add_article_id'] = $data['add_article_id'];
$res = object_to_array(json_decode(myPost($url, $pra)));
return jsonSuccess([]);
}
/**
* 删除相关文章
*/
public function delArticleRelate(){
$data = $this->request->post();
$rule = new Validate([
'article_id'=>'require',
'del_article_id'=>'require'
]);
if(!$rule->check($data)){
return jsonError($rule->getError());
}
$url = 'http://journalapi.tmrjournals.com/public/index.php/master/Article/delRelatedArticle';
$pra = [];
$pra['article_id'] = $data['article_id'];
$pra['del_article_id'] = $data['del_article_id'];
$res = object_to_array(json_decode(myPost($url, $pra)));
return jsonSuccess([]);
}
}