summaryrefslogtreecommitdiffstats
path: root/lib/private/Metadata/FileMetadataMapper.php
diff options
context:
space:
mode:
authorCarl Schwan <carl@carlschwan.eu>2022-05-09 14:19:17 +0200
committerLouis Chemineau <louis@chmn.me>2022-10-11 10:41:17 +0200
commit54b6d0708bcf389857fdc7e0afe8f0edcf8ea3f3 (patch)
tree495809029bbc9dc309394b7574b110745ccea5ce /lib/private/Metadata/FileMetadataMapper.php
parent92d065b6ebaa09c316118d9a155d45f69b00f19d (diff)
downloadnextcloud-server-54b6d0708bcf389857fdc7e0afe8f0edcf8ea3f3.tar.gz
nextcloud-server-54b6d0708bcf389857fdc7e0afe8f0edcf8ea3f3.zip
Allow scanning for metadata with occ scan:file --generate-metadata
Signed-off-by: Carl Schwan <carl@carlschwan.eu> Signed-off-by: Louis Chemineau <louis@chmn.me>
Diffstat (limited to 'lib/private/Metadata/FileMetadataMapper.php')
-rw-r--r--lib/private/Metadata/FileMetadataMapper.php49
1 files changed, 13 insertions, 36 deletions
diff --git a/lib/private/Metadata/FileMetadataMapper.php b/lib/private/Metadata/FileMetadataMapper.php
index 4d5591baf1f..f8f8df4bf3b 100644
--- a/lib/private/Metadata/FileMetadataMapper.php
+++ b/lib/private/Metadata/FileMetadataMapper.php
@@ -112,59 +112,36 @@ class FileMetadataMapper extends QBMapper {
* @return Entity the saved entity with the set id
* @throws Exception
* @throws \InvalidArgumentException if entity has no id
- * @since 14.0.0
*/
public function update(Entity $entity): Entity {
- // if entity wasn't changed it makes no sense to run a db query
- $properties = $entity->getUpdatedFields();
- if (\count($properties) === 0) {
- return $entity;
+ if (!($entity instanceof FileMetadata)) {
+ throw new \Exception("Entity should be a FileMetadata entity");
}
// entity needs an id
$id = $entity->getId();
if ($id === null) {
- throw new \InvalidArgumentException(
- 'Entity which should be updated has no id');
- }
-
- if (!($entity instanceof FileMetadata)) {
- throw new \Exception("Entity should be a FileMetadata entity");
+ throw new \InvalidArgumentException('Entity which should be updated has no id');
}
// entity needs an group_name
$groupName = $entity->getGroupName();
- if ($id === null) {
- throw new \InvalidArgumentException(
- 'Entity which should be updated has no group_name');
- }
-
- // get updated fields to save, fields have to be set using a setter to
- // be saved
- // do not update the id and group_name field
- unset($properties['id']);
- unset($properties['group_name']);
-
- $qb = $this->db->getQueryBuilder();
- $qb->update($this->tableName);
-
- // build the fields
- foreach ($properties as $property => $updated) {
- $column = $entity->propertyToColumn($property);
- $getter = 'get' . ucfirst($property);
- $value = $entity->$getter();
-
- $type = $this->getParameterTypeForProperty($entity, $property);
- $qb->set($column, $qb->createNamedParameter($value, $type));
+ if ($groupName === null) {
+ throw new \InvalidArgumentException('Entity which should be updated has no group_name');
}
$idType = $this->getParameterTypeForProperty($entity, 'id');
$groupNameType = $this->getParameterTypeForProperty($entity, 'groupName');
+ $metadataValue = $entity->getMetadata();
+ $metadataType = $this->getParameterTypeForProperty($entity, 'metadata');
- $qb->where($qb->expr()->eq('id', $qb->createNamedParameter($id, $idType)))
- ->andWhere($qb->expr()->eq('group_name', $qb->createNamedParameter($groupName, $groupNameType)));
+ $qb = $this->db->getQueryBuilder();
- $qb->executeStatement();
+ $qb->update($this->tableName)
+ ->set('metadata', $qb->createNamedParameter($metadataValue, $metadataType))
+ ->where($qb->expr()->eq('id', $qb->createNamedParameter($id, $idType)))
+ ->andWhere($qb->expr()->eq('group_name', $qb->createNamedParameter($groupName, $groupNameType)))
+ ->executeStatement();
return $entity;
}