123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216 |
- <?php
- namespace Dcat\Admin\Form\Concerns;
- use Dcat\Admin\Contracts\UploadField as UploadFieldInterface;
- use Dcat\Admin\Form\Builder;
- use Dcat\Admin\Form\Field;
- use Dcat\Admin\Form\NestedForm;
- use Dcat\Admin\Support\WebUploader;
- use Illuminate\Support\Arr;
- use Symfony\Component\HttpFoundation\File\UploadedFile;
- use Symfony\Component\HttpFoundation\Response;
- /**
- * @property Builder $builder
- */
- trait HasFiles
- {
- /**
- * 文件上传操作.
- *
- * @param array $data
- *
- * @return Response|void
- */
- protected function handleUploadFile($data)
- {
- $column = $data['upload_column'] ?? null;
- $file = app('admin.web-uploader')->getUploadedFile() ?: ($data[WebUploader::FILE_NAME] ?? null);
- if (! $column || ! $file instanceof UploadedFile) {
- return;
- }
- $relation = $data['_relation'] ?? null;
- if (empty($relation)) {
- $field = $this->findFieldByName($column);
- } else {
- // hasMany表单文件上传
- $relation = explode(',', $relation)[0];
- $field = $this->getFieldByRelationName($relation, $column);
- }
- if ($field && $field instanceof UploadFieldInterface) {
- if ($results = $this->callUploading($field, $file)) {
- return $this->sendResponse($results);
- }
- $response = $field->upload($file);
- if ($results = $this->callUploaded($field, $file, $response)) {
- return $this->sendResponse($results);
- }
- return $response;
- }
- }
- /**
- * 根据字段名称查找字段.
- *
- * @param string|null $column
- *
- * @return Field|null
- */
- public function findFieldByName(?string $column)
- {
- return $this->builder->field($column);
- }
- /**
- * 新增页面删除文件.
- *
- * @param array $input
- *
- * @return \Illuminate\Http\JsonResponse
- */
- protected function deleteFileWhenCreating(array $input)
- {
- if (! array_key_exists(Field::FILE_DELETE_FLAG, $input)) {
- return;
- }
- $column = $input['_column'] ?? null;
- $filePath = $input['key'] ?? null;
- $relation = $input['_relation'] ?? null;
- if (! $column && ! $filePath) {
- return;
- }
- if (empty($relation)) {
- $field = $this->findFieldByName($column);
- } else {
- $field = $this->getFieldByRelationName($relation[0], $column);
- }
- if ($field && $field instanceof UploadFieldInterface) {
- $this->deleteFile($field, $filePath);
- return $this
- ->response()
- ->status(true)
- ->send();
- }
- }
- /**
- * 删除文件.
- *
- * @param UploadFieldInterface|Field $field
- * @param array $input
- */
- protected function deleteFile(UploadFieldInterface $field, $input = null)
- {
- if ($input) {
- if (
- is_string($input)
- || (is_array($input) && ! Arr::isAssoc($input))
- ) {
- $input = [$field->column() => $input];
- }
- $field->setOriginal($input);
- }
- if ($this->callFileDeleting($field) === false) {
- return;
- }
- $field->destroy();
- $this->callFileDeleted($field);
- }
- /**
- * 获取hasMany的子表单字段.
- *
- * @param string $relation
- * @param string $column
- *
- * @return mixed
- */
- public function getFieldByRelationName($relation, $column)
- {
- $relation = $this->findFieldByName($relation);
- if ($relation && $relation instanceof Field\HasMany) {
- return $relation->buildNestedForm()->fields()->first(function ($field) use ($column) {
- return $field->column() === $column;
- });
- }
- }
- /**
- * 根据传入数据删除文件.
- *
- * @param array $input
- * @param bool $forceDelete
- */
- public function deleteFiles($input, $forceDelete = false)
- {
- // If it's a soft delete, the files in the data will not be deleted.
- if (! $forceDelete && $this->isSoftDeletes) {
- return;
- }
- $this->builder
- ->fields()
- ->filter(function ($field) {
- return $field instanceof UploadFieldInterface;
- })
- ->each(function (UploadFieldInterface $field) use ($input) {
- $this->deleteFile($field, $input);
- });
- }
- /**
- * @param array $input
- *
- * @return array
- */
- protected function handleFileDelete(array $input = [])
- {
- if (! array_key_exists(Field::FILE_DELETE_FLAG, $input)) {
- return $input;
- }
- $input[Field::FILE_DELETE_FLAG] = $input['key'];
- if (! empty($input['_column'])) {
- if (empty($input['_relation'])) {
- $input[$input['_column']] = '';
- } else {
- [$relation, $relationKey] = $input['_relation'];
- $keyName = $this->builder()->field($relation)->getKeyName();
- $input[$relation] = [
- $relationKey => [
- $keyName => $relationKey,
- $input['_column'] => '',
- NestedForm::REMOVE_FLAG_NAME => null,
- ],
- ];
- }
- }
- $input = Arr::only($input, [Field::FILE_DELETE_FLAG, $input['_column']]);
- $this->request->replace($input);
- return $input;
- }
- }
|