2024-02-23 14:37:36 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
use yii\grid\GridView;
|
|
|
|
use yii\helpers\Html;
|
2024-02-25 10:31:07 +08:00
|
|
|
use yii\web\JqueryAsset;
|
|
|
|
use yii\web\View;
|
2024-02-23 14:37:36 +08:00
|
|
|
use yii\web\YiiAsset;
|
|
|
|
use yii\widgets\DetailView;
|
|
|
|
use app\models\CollectionUploadedSearch;
|
|
|
|
|
|
|
|
/** @var yii\web\View $this */
|
|
|
|
/** @var app\models\CollectionTasks $model */
|
|
|
|
|
2024-02-25 10:31:07 +08:00
|
|
|
$this->title = '文件收集ID ' . $model->id;
|
|
|
|
$this->params['breadcrumbs'][] = ['label' => '文件收集', 'url' => ['index']];
|
2024-02-23 14:37:36 +08:00
|
|
|
$this->params['breadcrumbs'][] = $this->title;
|
|
|
|
YiiAsset::register($this);
|
|
|
|
|
|
|
|
$searchModel = new CollectionUploadedSearch();
|
|
|
|
$dataProvider = $searchModel->search(Yii::$app->request->queryParams);
|
|
|
|
$dataProvider->query->andWhere(['task_id' => $model->id]);
|
|
|
|
?>
|
|
|
|
<div class="collection-tasks-view">
|
|
|
|
|
|
|
|
<h1><?= Html::encode($this->title) ?></h1>
|
|
|
|
|
|
|
|
<p>
|
2024-02-25 10:31:07 +08:00
|
|
|
<?= Html::a('复制收集链接', null, ['class' => 'btn btn-primary', 'id' => 'copy-link-button']) ?>
|
2024-02-26 15:52:54 +08:00
|
|
|
<?= Html::a('访问收集链接', ['collection/access', 'id' => $model->id, 'secret' => $model->secret], ['class' => 'btn btn-primary', 'target' => '_blank']) ?>
|
2024-02-25 10:31:07 +08:00
|
|
|
<?= Html::a('取消收集', ['delete', 'id' => $model->id], [
|
2024-02-23 14:37:36 +08:00
|
|
|
'class' => 'btn btn-danger',
|
|
|
|
'data' => [
|
2024-02-25 10:31:07 +08:00
|
|
|
'confirm' => '你确定要取消这个收集任务吗?已收集的文件不会被删除',
|
2024-02-23 14:37:36 +08:00
|
|
|
'method' => 'post',
|
|
|
|
],
|
|
|
|
]) ?>
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<?= DetailView::widget([
|
|
|
|
'model' => $model,
|
|
|
|
'attributes' => [
|
|
|
|
'id',
|
|
|
|
'folder_path',
|
|
|
|
'created_at',
|
|
|
|
'secret',
|
|
|
|
],
|
|
|
|
]) ?>
|
|
|
|
|
2024-02-25 10:31:07 +08:00
|
|
|
<h2>文件收集情况:</h2>
|
2024-02-23 14:37:36 +08:00
|
|
|
<?= GridView::widget([
|
|
|
|
'dataProvider' => $dataProvider,
|
|
|
|
'columns' => [
|
|
|
|
['class' => 'yii\grid\SerialColumn'],
|
|
|
|
'id',
|
|
|
|
'uploader_ip',
|
|
|
|
'uploaded_at',
|
2024-02-26 19:52:53 +08:00
|
|
|
[
|
|
|
|
'attribute' => 'subfolder_name',
|
|
|
|
'format' => 'raw',
|
|
|
|
'value' => function ($model) {
|
|
|
|
$url = "https://devs.chenx221.cyou:8081/index.php?r=home%2Findex&directory=" . urlencode($model->task->folder_path.'/'.$model->subfolder_name);
|
|
|
|
return Html::a($model->subfolder_name, $url, ['target' => '_blank']);
|
|
|
|
},
|
|
|
|
],
|
2024-02-23 14:37:36 +08:00
|
|
|
],
|
|
|
|
]); ?>
|
|
|
|
</div>
|
2024-02-25 10:31:07 +08:00
|
|
|
<?php
|
|
|
|
$this->registerJsFile('@web/js/collection_view.js', ['depends' => [JqueryAsset::class], 'position' => View::POS_END]);
|
|
|
|
?>
|