123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268 |
- {template 'common/header'}
- <ul class="we7-page-tab">
- <li{if $do == 'backup'} class="active"{/if}><a href="{php echo url('system/database');}">备份</a></li>
- <li{if $do == 'restore'} class="active"{/if}><a href="{php echo url('system/database/restore');}">还原</a></li>
- <li{if $do == 'trim'} class="active"{/if}><a href="{php echo url('system/database/trim');}">数据库结构整理</a></li>
- <li{if $do == 'optimize'} class="active"{/if}><a href="{php echo url('system/database/optimize');}">优化</a></li>
- <li{if $do == 'run'} class="active"{/if}><a href="{php echo url('system/database/run');}">运行SQL</a></li>
- <li{if $do == 'scrap_table'} class="active"{/if}><a href="{php echo url('system/database/scrap_table');}">废弃表</a></li>
- </ul>
- {if $do == 'backup'}
- <div class="alert we7-page-alert">
- <p><i class="wi wi-info-sign"></i>使用本系统备份的备份数据, 只能使用本系统来进行还原. 如果使用其他工具, 或者自行导入sql, 可能造成数据不完整或不正确.<p>
- <p><strong>请在站点访问量比较低的时间段(如:深夜)操作, 或操作之前关闭站点. 来防止可能出现的意外数据丢失. </strong><p>
- </div>
- <div class="form-group">
- <div class="col-sm-offset-2 col-md-offset-2 col-lg-offset-2 col-xs-12 col-md-10" style = "margin-top:20px">
- <a class="btn btn-primary span3" style = "margin-left:220px" href="{php echo url('system/database/backup', array('status'=>1,'start'=>2));}">开始备份</a>
- </div>
- </div>
- {/if}
- {if $do == 'restore'}
- <div class="alert we7-page-alert">
- <p><i class="wi wi-info-sign"></i>使用微擎系统备份的备份数据, 只能使用微擎系统来进行还原. 如果使用其他工具, 或者自行导入sql, 可能造成数据不完整或不正确.</p>
- <p><strong>请在站点访问量比较低的时间段(如:深夜)操作, 或操作之前关闭站点. 来防止可能出现的意外数据丢失. </strong></p>
- </div>
- <form action="" method="post" class="form-horizontal form">
- <table class="table we7-table table-hover site-list">
- <col width="285px"/>
- <col width="160px"/>
- <col width="120px"/>
- <col width="140px"/>
- <tr>
- <th class="text-left">备份名称</th>
- <th class="text-left">备份时间</th>
- <th>分卷数量</th>
- <th class="text-right">操作</th>
- </tr>
- {loop $reduction $row}
- <tr>
- <td class="text-left">{$row['bakdir']}</td>
- <td class="text-left">{php echo date('Y-m-d H:i:s', $row['time']);}</td>
- <td>{$row['volume']}</td>
- <td>
- <div class="link-group">
- <a href="javascript:;" onclick="confirmNotice('restore', '{$row["bakdir"]}', '{php echo date('Y-m-d H:i:s', $row['time']);}');">还原此备份</a>
- <a href="javascript:;" class="del" onclick="confirmNotice('delete', '{$row["bakdir"]}');">删除</a>
- </div>
- </td>
- </tr>
- {/loop}
- </table>
- <script>
- function confirmNotice(type, bakdir, storeTime) {
- if (type == 'restore') {
- util.confirm(function () {
- window.location.href = "{php echo url('system/database/restore')}" + 'restore_dirname=' + bakdir;
- }, function () {
- return false;
- }, '确定要将数据库数据还原到<span class="color-red">' + storeTime + '</span> 备份的数据吗? <p>还原备份数据, 数据库将被覆盖。请谨慎操作!</p>');
- } else {
- util.confirm(function () {
- window.location.href = "{php echo url('system/database/restore')}" + 'delete_dirname=' + bakdir;
- }, function () {
- return false;
- }, '确认删除备份记录? ');
- }
- }
- </script>
- </form>
- {/if}
- {if $do == 'trim'}
- <div class="alert we7-page-alert table-info" style="display:none;">
- <p><i class="wi wi-info-sign"></i><strong>恭喜,您的数据表中已无冗余信息。</strong></p>
- </div>
- <form action="" method="post" class="form-horizontal form">
- {if !empty($diff)}
- <table class="table table-hover we7-table trim-container">
- <thead>
- <tr>
- <th style="width:400px;">表名称</th>
- <th >字段</th>
- <th >索引</th>
- </tr>
- </thead>
- <tbody>
- {loop $diff $row}
- <tr>
- <td class="tablename">{$row['name']}</td>
- <td>
- {loop $row['fields'] $field}
- <div style="height:50px;" id="field{$field}">
- <span>{$field}</span>
- <a href="javascript:;" data-type="field" title="删除" class="btn btn-default btn-sm" style="float:right">删除</a>
- </div>
- {/loop}
- </td>
- <td>
- {loop $row['indexes'] $index}
- <div style="height:50px;float:right" id="index{$index}">
- <span>{$index}</span>
- <a href="javascript:;" data-type="index" title="删除" class="btn btn-danger btn-sm" >删除</a>
- </div>
- {/loop}
- </td>
- </tr>
- {/loop}
- </tbody>
- </table>
- {/if}
- <script type="text/javascript">
- if ($(".tablename").text() == '') {
- $(".table-info").css('display', 'block');
- }
- $(".trim-container a").click(function() {
- if (!confirm('删除后将彻底改变数据库信息!')) {
- return false;
- }
- var type = $(this).attr('data-type');
- var data = $(this).prev().text();
- var table = $(this).parent().parent().parent().children("td.tablename").text();
- $.post('{php echo url('system/database/trim')}', {'type' : type, 'data' : data, 'table' : table}, function(status){
- if (status == 'success') {
- $('#'+type+data).remove();
- }
- });
- var fields = $(this).parent().parent().children("div");
- var indexes = $(this).parent().parent().siblings().children("div");
- if (fields.length <= 1 && indexes.length < 1) {
- $(this).parent().parent().parent().remove();
- }
- if ($(".tablename").text() == '') {
- $(".table-info").css('display', 'block');
- }
- });
- </script>
- </form>
- {/if}
- {if $do == 'optimize'}
- <div class="alert we7-page-alert">
- <i class="wi wi-info-sign"></i><strong>数据表优化可以去除数据文件中的碎片, 使记录排列紧密, 提高读写速度.</strong>
- </div>
- <form action="" method="post" class="form-horizontal form">
- {if !empty($optimize_table)}
- <table class="table we7-table table-hover site-list">
- <col width="30px"/>
- <col width="100px"/>
- <col width="50px"/>
- <col width="50px"/>
- <col width="80px"/>
- <col width="80px"/>
- <col width="80px"/>
- <tr>
- <th>操作</th>
- <th>表名</th>
- <th>表类型</th>
- <th>记录数</th>
- <th>数据尺寸</th>
- <th>索引尺寸</th>
- <th>碎片尺寸</th>
- </tr>
- {loop $optimize_table $row}
- <tr>
- <td><input type="checkbox" name="select[]" checked="checked" value="{$row['title']}"></td>
- <td>{$row['title']}</td>
- <td>{$row['type']}</td>
- <td>{$row['rows']}</td>
- <td>{$row['data']}</td>
- <td>{$row['index']}</td>
- <td>{$row['free']}</td>
- </tr>
- {/loop}
- <tr>
- <td colspan="7" class="text-left">
- <button type="submit" class="btn btn-primary span3" name="submit" value="提交">开始优化</button>
- <input type="hidden" name="token" value="{$_W['token']}" />
- </td>
- </tr>
- </table>
- {else}
- <div class="alert alert-success"><strong>没有要优化的数据表</strong></div>
- {/if}
- </form>
- {/if}
- {if $do == 'run'}
- <div class="alert we7-page-alert">
- <p><i class="wi wi-info-sign"></i>通过此功能可以直接在数据库中执行特定语句, 用于调试错误. 或者系统管理员特定排错. 注意, 这里运行的语句不会有任何返回结果.</p>
- <p><strong>注意: 此功能可能造成数据破坏, 请谨慎使用. 如果你不清楚他的功能, 请不要使用.</strong></p>
- </div>
- <form action="" method="post" class="we7-form" onsubmit="return confirm('请确保你已经了解这些语句的作用, 并自愿承担风险.');">
- <div class="form-group">
- <label class="control-label col-sm-1">SQL</label>
- <div class="form-controls col-sm-8">
- <textarea name="sql" class="form-control" rows="8" style="width:600px;"></textarea>
- <span class="help-block">多条语句请使用 ; 隔开</span>
- </div>
- </div>
- <div class="form-group">
- <label class="control-label"></label>
- <div class="form-controls">
- <button type="submit" class="btn btn-primary span3" name="submit" value="提交">运行SQL</button>
- <input type="hidden" name="token" value="{$_W['token']}" />
- </div>
- </div>
- </form>
- {/if}
- {if $do == 'scrap_table'}
- <div id="js-database" ng-controller="databaseCtrl" ng-cloak>
- <div class="alert we7-page-alert">
- <p><i class="wi wi-info-sign"></i>以下所列为已卸载和回收站的非本地开发模块,有可能其模块表还存在,请按需检测;</p>
- <p><strong>注意: 此功能会造成数据破坏, 请谨慎使用. 如果你不清楚他的功能, 请不要使用.</strong></p>
- </div>
- <table class="table we7-table table-hover site-list">
- <col width="70px"/>
- <col width=""/>
- <col width="180px"/>
- <tr>
- <th></th>
- <th>应用名</th>
- <th class="text-left">操作</th>
- </tr>
- <tr ng-show="moduleCloud" ng-repeat="module in moduleCloud">
- <td><img src="{{module.logo}}" width="40px"></td>
- <td><span ng-bind="module.title"></span></td>
- <td ng-show="module.loading && !module.loaded"><img src="./resource/images/loading.gif" width="25px"><span class="color-green"> 检测中...</span></td>
- <td ng-show="!module.loading"><a href="JavaScript:;" ng-click="loadData(module.name)" class="color-default">检测</a></td>
- <td ng-show="module.loaded" class="text-left">
- <a href="JavaScript:;" ng-click="showDetail(module.name)" class="color-default">查看文件 </a>
- <a href="JavaScript:;" ng-click="loadData(module.name)" class="color-default"> 再次检测</a>
- </td>
- </tr>
- <tr ng-show="!moduleCloud"><td colspan="3" class="text-center"><strong>没有废弃的数据表</strong></td></tr>
- </table>
- <div class="text-right">{$pager}</div>
- <div class="modal fade modal-type" tabindex="-1" role="dialog" id="scrap_table_detail">
- <div class="modal-dialog" role="document">
- <div class="modal-content">
- <div class="modal-header clearfix">
- 卸载模块废弃表列表
- <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
- </div>
- <div class="modal-body">
- <div class="form-group" ng-repeat="table in activeModule.scrap_table" ng-show="activeModule.scrap_table">
- <div class="we7-padding-left color-gray" ng-bind="table"></div>
- </div>
- <div class="form-group text-center" ng-show="!activeModule.scrap_table">
- <div class="we7-padding color-gray">暂无冗余表结构</div>
- </div>
- </div>
- <div class="modal-footer" ng-show="activeModule.scrap_table">
- <button type="button" class="btn btn-primary" data-dismiss="modal" ng-click="deleteScrapTable(activeModule.name)">立即删除</button>
- <button type="button" class="btn btn-default" data-dismiss="modal">暂不处理</button>
- </div>
- </div>
- </div>
- </div>
- </div>
- <script>
- angular.module('systemApp').value('config', {
- 'moduleCloud': {php echo !empty($module_cloud) ? json_encode($module_cloud) : 'null'},
- 'links': {
- 'loadData': "{php echo url('system/database/load_scrap_table_data')}",
- 'deleteScrapTable': "{php echo url('system/database/delete_scrap_table')}",
- },
- });
- angular.bootstrap($('#js-database'), ['systemApp']);
- </script>
- {/if}
- {template 'common/footer'}
|