1
0
mirror of https://github.com/sismics/docs.git synced 2025-12-13 09:46:17 +00:00

#208: rename files

This commit is contained in:
Benjamin Gamard
2018-03-23 12:52:42 +01:00
parent 37ca5ff84e
commit 55a4bb7621
13 changed files with 205 additions and 102 deletions

View File

@@ -139,8 +139,8 @@ public class FileResource extends BaseResource {
/**
* Attach a file to a document.
*
* @api {post} /file/:fileId Attach a file to a document
* @apiName PostFile
* @api {post} /file/:fileId/attach Attach a file to a document
* @apiName PostFileAttach
* @apiGroup File
* @apiParam {String} fileId File ID
* @apiParam {String} id Document ID
@@ -156,7 +156,7 @@ public class FileResource extends BaseResource {
* @return Response
*/
@POST
@Path("{id: [a-z0-9\\-]+}")
@Path("{id: [a-z0-9\\-]+}/attach")
public Response attach(
@PathParam("id") String id,
@FormParam("id") String documentId) {
@@ -215,6 +215,48 @@ public class FileResource extends BaseResource {
.add("status", "ok");
return Response.ok().entity(response.build()).build();
}
/**
* Update a file.
*
* @api {post} /file/:id Update a file
* @apiName PostFile
* @apiGroup File
* @apiParam {String} id File ID
* @apiParam {String} name Name
* @apiSuccess {String} status Status OK
* @apiError (client) ForbiddenError Access denied
* @apiError (client) ValidationError Validation error
* @apiPermission user
* @apiVersion 1.6.0
*
* @param id File ID
* @return Response
*/
@POST
@Path("{id: [a-z0-9\\-]+}")
public Response update(@PathParam("id") String id,
@FormParam("name") String name) {
if (!authenticate()) {
throw new ForbiddenClientException();
}
// Get the file
File file = findFile(id, null);
// Validate input data
name = ValidationUtil.validateLength(name, "name", 1, 200, false);
// Update the file
FileDao fileDao = new FileDao();
file.setName(name);
fileDao.update(file);
// Always return OK
JsonObjectBuilder response = Json.createObjectBuilder()
.add("status", "ok");
return Response.ok().entity(response.build()).build();
}
/**
* Reorder files.
@@ -362,24 +404,10 @@ public class FileResource extends BaseResource {
}
// Get the file
FileDao fileDao = new FileDao();
AclDao aclDao = new AclDao();
File file = fileDao.getFile(id);
if (file == null) {
throw new NotFoundException();
}
if (file.getDocumentId() == null) {
// It's an orphan file
if (!file.getUserId().equals(principal.getId())) {
// But not ours
throw new ForbiddenClientException();
}
} else if (!aclDao.checkPermission(file.getDocumentId(), PermType.WRITE, getTargetIdList(null))) {
throw new NotFoundException();
}
File file = findFile(id, null);
// Delete the file
FileDao fileDao = new FileDao();
fileDao.delete(file.getId(), principal.getId());
// Update the user quota
@@ -448,29 +476,10 @@ public class FileResource extends BaseResource {
}
// Get the file
FileDao fileDao = new FileDao();
UserDao userDao = new UserDao();
File file = fileDao.getFile(fileId);
if (file == null) {
throw new NotFoundException();
}
if (file.getDocumentId() == null) {
// It's an orphan file
if (!file.getUserId().equals(principal.getId())) {
// But not ours
throw new ForbiddenClientException();
}
} else {
// Check document accessibility
AclDao aclDao = new AclDao();
if (!aclDao.checkPermission(file.getDocumentId(), PermType.READ, getTargetIdList(shareId))) {
throw new ForbiddenClientException();
}
}
File file = findFile(fileId, shareId);
// Get the stored file
UserDao userDao = new UserDao();
java.nio.file.Path storedFile;
String mimeType;
boolean decrypt;
@@ -535,7 +544,7 @@ public class FileResource extends BaseResource {
}
return builder.build();
}
/**
* Returns all files from a document, zipped.
*
@@ -605,4 +614,34 @@ public class FileResource extends BaseResource {
.header("Content-Disposition", "attachment; filename=\"" + documentDto.getTitle().replaceAll("\\W+", "_") + ".zip\"")
.build();
}
/**
* Find a file with access rights checking.
*
* @param fileId File ID
* @param shareId Share ID
* @return File
*/
private File findFile(String fileId, String shareId) {
FileDao fileDao = new FileDao();
File file = fileDao.getFile(fileId);
if (file == null) {
throw new NotFoundException();
}
if (file.getDocumentId() == null) {
// It's an orphan file
if (!file.getUserId().equals(principal.getId())) {
// But not ours
throw new ForbiddenClientException();
}
} else {
// Check document accessibility
AclDao aclDao = new AclDao();
if (!aclDao.checkPermission(file.getDocumentId(), PermType.READ, getTargetIdList(shareId))) {
throw new ForbiddenClientException();
}
}
return file;
}
}

View File

@@ -103,7 +103,7 @@ angular.module('docs').controller('DocumentEdit', function($rootScope, $scope, $
var attachOrphanFiles = function(data) {
var promises = [];
_.each($scope.orphanFiles, function(fileId) {
promises.push(Restangular.one('file/' + fileId).post('', { id: data.id }));
promises.push(Restangular.one('file/' + fileId).post('attach', { id: data.id }));
});
$scope.orphanFiles = [];
return $q.all(promises);

View File

@@ -3,7 +3,7 @@
/**
* Document view content controller.
*/
angular.module('docs').controller('DocumentViewContent', function ($scope, $rootScope, $stateParams, Restangular, $dialog, $state, Upload, $translate) {
angular.module('docs').controller('DocumentViewContent', function ($scope, $rootScope, $stateParams, Restangular, $dialog, $state, Upload, $translate, $uibModal) {
/**
* Configuration for file sorting.
*/
@@ -131,4 +131,30 @@ angular.module('docs').controller('DocumentViewContent', function ($scope, $root
}
});
};
/**
* Rename a file.
*/
$scope.renameFile = function (file) {
$uibModal.open({
templateUrl: 'partial/docs/file.rename.html',
controller: 'FileRename',
resolve: {
file: function () {
return angular.copy(file);
}
}
}).result.then(function (fileUpdated) {
if (fileUpdated === null) {
return;
}
// Rename the file
Restangular.one('file/' + file.id).post('', {
name: fileUpdated.name
}).then(function () {
file.name = fileUpdated.name;
})
});
};
});

View File

@@ -0,0 +1,11 @@
'use strict';
/**
* File rename controller.
*/
angular.module('docs').controller('FileRename', function ($scope, file, $uibModalInstance) {
$scope.file = file;
$scope.close = function(file) {
$uibModalInstance.close(file);
}
});

View File

@@ -69,6 +69,7 @@
<script src="app/docs/controller/document/DocumentModalAddTag.js" type="text/javascript"></script>
<script src="app/docs/controller/document/FileView.js" type="text/javascript"></script>
<script src="app/docs/controller/document/FileModalView.js" type="text/javascript"></script>
<script src="app/docs/controller/document/FileRename.js" type="text/javascript"></script>
<script src="app/docs/controller/tag/Tag.js" type="text/javascript"></script>
<script src="app/docs/controller/tag/TagEdit.js" type="text/javascript"></script>
<script src="app/docs/controller/settings/Settings.js" type="text/javascript"></script>

View File

@@ -194,6 +194,10 @@
"previous": "Previous",
"next": "Next",
"not_found": "File not found"
},
"edit": {
"title": "Edit file",
"name": "Filename"
}
},
"tag": {
@@ -531,6 +535,7 @@
"export": "Export",
"edit": "Edit",
"delete": "Delete",
"rename": "Rename",
"loading": "Loading...",
"send": "Send",
"enabled": "Enabled",

View File

@@ -13,7 +13,7 @@
<img ng-src="../api/file/{{ file.id }}/data?size=thumb" uib-tooltip="{{ file.mimetype }} | {{ file.size | filesize }}" tooltip-placement="top" />
</a>
<div class="file-info">
<div class="caption caption-hover-inverse file-name" ng-click="openFile(file)" ng-if="file.name">{{ file.name }}</div>
<div class="v-align caption caption-hover-inverse file-name" ng-click="openFile(file)" ng-if="file.name">{{ file.name }}</div>
<div class="caption caption-hover">
<button class="btn btn-danger" ng-click="deleteFile($event, file)"><span class="fas fa-trash"></span></button>
</div>

View File

@@ -55,7 +55,7 @@
</a>
<div class="file-info">
<div class="caption caption-hover-inverse file-name" ng-click="openFile(file)" ng-if="file.name">{{ file.name }}</div>
<div class="v-align caption caption-hover-inverse file-name" ng-click="openFile(file)" ng-if="file.name">{{ file.name }}</div>
<div class="caption caption-hover" ng-show="document.writable">
<div class="btn btn-default handle"><span class="fas fa-arrows-alt-h"></span></div>
</div>
@@ -67,9 +67,13 @@
</button>
<ul class="dropdown-menu" uib-dropdown-menu>
<li>
<a href ng-click="renameFile(file)">
<span class="fas fa-pencil-alt"></span>
{{ 'rename' | translate }}
</a>
<a href ng-click="deleteFile(file)">
<span class="fas fa-trash"></span>
Delete
{{ 'delete' | translate }}
</a>
</li>
</ul>

View File

@@ -0,0 +1,16 @@
<div class="modal-header">
<h3>{{ 'file.edit.title' | translate }}</h3>
</div>
<form name="fileForm" novalidate>
<div class="modal-body">
<input type="text" name="name" ng-attr-placeholder="{{ 'file.edit.name' | translate }}" class="form-control"
ng-maxlength="200" required ng-model="file.name">
<span class="text-danger" ng-show="fileForm.name.$error.maxlength && fileForm.$dirty">{{ 'validation.too_long' | translate }}</span>
</div>
<div class="modal-footer">
<button ng-click="close(file)" ng-disabled="!fileForm.$valid" class="btn btn-primary">
<span class="fas fa-pencil-alt"></span> {{ 'save' | translate }}
</button>
<button ng-click="close(null)" class="btn btn-default">{{ 'cancel' | translate }}</button>
</div>
</form>

View File

@@ -207,6 +207,8 @@ ul.tag-tree {
white-space: normal;
display: block;
text-overflow: ellipsis;
margin-right: auto !important;
margin-left: auto !important;
}
.file-info {

View File

@@ -135,7 +135,25 @@ public class TestFileResource extends BaseJerseyTest {
Assert.assertEquals(163510L, files.getJsonObject(0).getJsonNumber("size").longValue());
Assert.assertEquals(file2Id, files.getJsonObject(1).getString("id"));
Assert.assertEquals("PIA00452.jpg", files.getJsonObject(1).getString("name"));
// Rename a file
target().path("file/" + file1Id)
.request()
.cookie(TokenBasedSecurityFilter.COOKIE_NAME, file1Token)
.post(Entity.form(new Form()
.param("name", "Pale Blue Dot")), JsonObject.class);
// Get all files from a document
json = target().path("/file/list")
.queryParam("id", document1Id)
.request()
.cookie(TokenBasedSecurityFilter.COOKIE_NAME, file1Token)
.get(JsonObject.class);
files = json.getJsonArray("files");
Assert.assertEquals(2, files.size());
Assert.assertEquals(file1Id, files.getJsonObject(0).getString("id"));
Assert.assertEquals("Pale Blue Dot", files.getJsonObject(0).getString("name"));
// Reorder files
target().path("/file/reorder").request()
.cookie(TokenBasedSecurityFilter.COOKIE_NAME, file1Token)
@@ -301,7 +319,7 @@ public class TestFileResource extends BaseJerseyTest {
Assert.assertNotNull(document1Id);
// Attach a file to a document
target().path("/file/" + file1Id).request()
target().path("/file/" + file1Id + "/attach").request()
.cookie(TokenBasedSecurityFilter.COOKIE_NAME, file3Token)
.post(Entity.form(new Form()
.param("id", document1Id)), JsonObject.class);