module_make.php

来自「这是matlab的一个小程序」· PHP 代码 · 共 284 行

PHP
284
字号
<?php
@set_time_limit(0);
require_once(dirname(__FILE__)."/config.php");
require_once(dirname(__FILE__)."/../include/dedemodule.class.php");
CheckPurview('sys_module');
if(empty($action)) $action = '';

if($action=='')
{
	$modules = array();
	require_once(dirname(__FILE__)."/templets/module_make.htm");
	exit();
}
/*---------
//获得Hash码
function GetHash()
----------*/
else if($action=='gethash')
{
	echo md5($modulname.$email);
	exit();
}
/*-------------
//生成项目
function Makemodule()
--------------*/
else if($action=='make')
{
	$filelist = str_replace("\r","\n",trim($filelist));
	$filelist = trim(ereg_replace("[\n]{1,}","\n",$filelist));
	if($filelist==''){
		ShowMsg("对不起,你没有指定模块的文件列表,因此不能创建项目!","-1");
		exit();
	}

	//去除转义
	foreach($_POST as $k=>$v) $$k = stripslashes($v);

	if(!isset($autosetup)) $autosetup = 0;
	if(!isset($autodel)) $autodel = 0;
	$mdir = DEDEROOT.'/data/module';
	$hashcode = md5($modulname.$email);
	$moduleFilename = $mdir.'/'.$hashcode.'.xml';
	$menustring = base64_encode($menustring);
	$dm = new DedeModule($mdir);

	if($dm->HasModule($hashcode))
	{
		$dm->Clear();
		ShowMsg("对不起,你指定同名模块已经存在,因此不能创建项目!<br>如果你要更新这个模块,请先删除:module/{$hashcode}.xml","-1");
		exit();
	}

	$readmef = $setupf = $uninstallf = '';

	if(empty($readmetxt))
	{
		move_uploaded_file($readme,$mdir."/{$hashcode}-r.html") or die("你没填写说明或上传说明文件!");
		$readmef = $dm->GetEncodeFile($mdir."/{$hashcode}-r.html",true);
	}
	else
	{
		$readmetxt = "<p style='line-height:150%'>".$readmetxt;
		$readmetxt = ereg_replace("[\r\n]{1,}","<br />\r\n",$readmetxt);
		$readmetxt .= "</p>";
		$readmef = base64_encode(trim($readmetxt));
	}
	
	if($autosetup==0)
	{
	  move_uploaded_file($setup,$mdir."/{$hashcode}-s.php") or die("你没上传,或系统无法把setup文件移动到 module 目录!");
	  $setupf = $dm->GetEncodeFile($mdir."/{$hashcode}-s.php",true);
	}

  if($autodel==0)
	{
	  move_uploaded_file($uninstall,$mdir."/{$hashcode}-u.php") or die("你没上传,或系统无法把uninstall文件移动到 module 目录!");
	  $uninstallf = $dm->GetEncodeFile($mdir."/{$hashcode}-u.php",true);
	}

	if(trim($setupsql40)=='') $setupsql40 = '';
	else $setupsql40 = base64_encode(trim($setupsql40));

	//if(trim($setupsql41)=='') $setupsql41 = '';
	//else $setupsql41 = base64_encode(trim($setupsql41));

	if(trim($delsql)=='') $delsql = '';
	else $delsql = base64_encode(trim($delsql));

	$modulinfo = "<module>
<baseinfo>
name={$modulname}
team={$team}
time={$mtime}
email={$email}
url={$url}
hash={$hashcode}
indexname={$indexname}
indexurl={$indexurl}
ismember={$ismember}
autosetup={$autosetup}
autodel={$autodel}
lang={$lang}
moduletype={$moduletype}
</baseinfo>
<systemfile>
<menustring>
$menustring
</menustring>
<readme>
{$readmef}
</readme>
<setupsql40>
$setupsql40
</setupsql40>
<delsql>
$delsql
</delsql>
<setup>
{$setupf}
</setup>
<uninstall>
{$uninstallf}
</uninstall>
<oldfilelist>
$filelist
</oldfilelist>
</systemfile>
";

$filelists = explode("\n",$filelist);
foreach($filelists as $v)
{
  $v = trim($v);
  if(!empty($v)) $dm->MakeEncodeFileTest(dirname(__FILE__),$v);
}
//测试无误后编译安装包
$fp = fopen($moduleFilename,'w');
fwrite($fp,$modulinfo);
fwrite($fp,"<modulefiles>\r\n");
foreach($filelists as $v)
{
  $v = trim($v);
  if(!empty($v)) $dm->MakeEncodeFile(dirname(__FILE__),$v,$fp);
}
fwrite($fp,"</modulefiles>\r\n");
fwrite($fp,"</module>\r\n");
fclose($fp);
ShowMsg("成功对一个新模块进行编译!","module_main.php");
exit();
}/*-------------
//修改项目
function editModule()
--------------*/
else if($action=='edit')
{
	$filelist = str_replace("\r","\n",trim($filelist));
	$filelist = trim(ereg_replace("[\n]{1,}","\n",$filelist));
	if($filelist==""){
		ShowMsg("对不起,你没有指定模块的文件列表,因此不能创建项目!","-1");
		exit();
	}

	//已经去除转义
	foreach($_POST as $k=>$v) $$k = stripslashes($v);
	if(!isset($autosetup)) $autosetup = 0;
	if(!isset($autodel)) $autodel = 0;
	$mdir = DEDEROOT.'/data/module';
	$hashcode = $hash;
	$moduleFilename = $mdir.'/'.$hashcode.'.xml';
	$modulname = str_replace('=','',$modulname);
	$email = str_replace('=','',$email);
	$team = str_replace('=','',$team);
	$indexurl = str_replace('=','',$indexurl);
	$menustring = base64_encode($menustring);

	$dm = new DedeModule($mdir);

  $readmef = base64_encode($readmetxt);

  $setupf = $uninstallf = '';
  //编译setup文件
  if(is_uploaded_file($setup)) {
	  move_uploaded_file($setup,$mdir."/{$hashcode}-s.php") or die("你没上传,或系统无法把setup文件移动到 module 目录!");
	  $setupf = $dm->GetEncodeFile($mdir."/{$hashcode}-s.php",true);
	}
	else {
		if($autosetup==0) $setupf = base64_encode($dm->GetSystemFile($hashcode,'setup'));
	}

	 //编译uninstall文件
	if(is_uploaded_file($uninstall)) {
		move_uploaded_file($uninstall,$mdir."/{$hashcode}-u.php") or die("你没上传,或系统无法把uninstall文件移动到 module 目录!");
    $uninstallf = $dm->GetEncodeFile($mdir."/{$hashcode}-u.php",true);
  }
  else {
  	if($autodel==0) $uninstallf = base64_encode($dm->GetSystemFile($hashcode,'uninstall'));
  }

	if(trim($setupsql40)=='') $setupsql40 = '';
	else $setupsql40 = base64_encode(trim($setupsql40));

	//if(trim($setupsql41)=='') $setupsql41 = '';
	//else $setupsql41 = base64_encode(trim($setupsql41));

	if(trim($delsql)=='') $delsql = '';
	else $delsql = base64_encode(trim($delsql));

	$modulinfo = "<module>
<baseinfo>
name={$modulname}
team={$team}
time={$mtime}
email={$email}
url={$url}
hash={$hashcode}
indexname={$indexname}
indexurl={$indexurl}
ismember={$ismember}
autosetup={$autosetup}
autodel={$autodel}
lang={$lang}
moduletype={$moduletype}
</baseinfo>
<systemfile>
<menustring>
$menustring
</menustring>
<readme>
{$readmef}
</readme>
<setupsql40>
$setupsql40
</setupsql40>
<delsql>
$delsql
</delsql>
<setup>
{$setupf}
</setup>
<uninstall>
{$uninstallf}
</uninstall>
<oldfilelist>
$filelist
</oldfilelist>
</systemfile>
";

if($rebuild=='yes')
{
	$filelists = explode("\n",$filelist);
	foreach($filelists as $v)
	{
  	$v = trim($v);
  	if(!empty($v)) $dm->MakeEncodeFileTest(dirname(__FILE__),$v);
	}
	//测试无误后编译安装包
	$fp = fopen($moduleFilename,'w');
	fwrite($fp,$modulinfo."\r\n");
	fwrite($fp,"<modulefiles>\r\n");
	foreach($filelists as $v)
	{
  	$v = trim($v);
  	if(!empty($v)) $dm->MakeEncodeFile(dirname(__FILE__),$v,$fp);
	}
	fwrite($fp,"</modulefiles>\r\n");
	fwrite($fp,"</module>\r\n");
	fclose($fp);
}
else
{
	$fxml = $dm->GetFileXml($hashcode);
	$fp = fopen($moduleFilename,'w');
	fwrite($fp,$modulinfo."\r\n");
	fwrite($fp,$fxml);
	fclose($fp);
}
ShowMsg("成功对模块重新编译!","module_main.php");
exit();
}

//ClearAllLink();
?>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?