-
Notifications
You must be signed in to change notification settings - Fork 159
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
restoring a file from "Deleted files" (trashbin) is not possible if the original folder does not exist any-more #1753
Comments
I'd expect the trashbin API to know where the original location is as it's stored in the database. The behavior in OC 10 was that if the target folder does not exist, we fall back to putting the restored item into the user's home root. |
Maybe in Phoenix we can detect this situation, this is likely a 409 if the folder does not exist, so after that fall back to a MOVE to the root |
in case we rely on the error code, need to make sure it's not happening also if the target destination file already exists like in #1730 |
assigned @jasson99 and put into sprint for creating tests |
@individual-it since tests have been added should we mark this issue as done and remove from current sprint? |
@haribhandari07 the issue is not fixed, only tests were added, so I took off @jasson99 assignment, but it should stay on the sprint |
Can confirm this still happens on https://ocis.ocis-web.latest.owncloud.works |
The trash (at least for oc10) has no parent file id, only an original location of the deleted file. We have no way of finding out where to restore the file/folder to if the original location doesn't exist anymore.
@tbsbdr what do you think about only informing the user that the original location doesn't exist anymore and then
If we choose option b, then we could also introduce an additional action |
I would choose a) as it seems simpler (also implementation wise?) and does not require an immediate userchoice which always comes with some cognitive costs. |
Proposal@kulmann we also need to think of restoring files in spaces - imo the usecase "original path vanished" could be not soooo cornerish in Spaces any more, as more hands will touch folders in Spaces. I would still opt for option a) -> restore to user personal home.
Also if I think of the user manual, I think its a bit more easy to comprehend written doc like: "If path changed: find all restored files in Restored-from-trashbin in personal/Sapcexy" rather than "find restored files in the root of personal/Spacexy" @kulmann what do you think, also regarding Spaces? Note - behaviour on Windows is:
|
Would also prefer the windows method. @kulmann should I have a look if thats possible? |
Not yet. I'd like to hear @pmaier1's opinion on this first. From a technical perspective we can only restore rebuilding the original path, because we don't have any parent folder file id via the API. The question at this time is if we want the windows behaviour (then you could implement it) or if we don't want it (then this ticket needs to remain on hold). |
Intuitively I also prefer Windows behavior. Dropbox also follows this pattern. They even restore related parent folders in bulk (if those are still in the trash bin). Interestingly, Box went the location picker way That certainly gives the user more control but is maybe more complex. If everyone agrees, I'd go for the simple Windows-based behavior and keep the location picker in mind as a potential improvement for later. I think this works better than (arbitrarily) restoring to root. What do you think? |
Fine by me. Let's do it this way 👍 |
Just think of the corner case that you might not have the permissions anymore to recreate the original path Alice creates "simple-folder/subfolder/lorem.txt" Or there might be the case that the share is gone all-together, or its even a totally different Share from an other user with the same name |
args, restoring the folder structure isn't a problem but one case is really difficult.
|
Hmm, I think it requires a product decision first. What should happen when you restore a folder with a name that already exists in your personal files? a) Overwrite the folder Currently we do a), which is No-Go IMO as folders can get overwritten easily. The overwritten folder then get's moved to the trash bin. |
Thx for the input, I would go for the suffix, i think that is how windows handles it as well |
I also prefer this option, oC10 does it like this as well. But I'm not sure how easy it is to implement. Worst case scenario would be that we also need adjustments in backend and/or SDK. @tbsbdr @pmaier1 see #1753 (comment) -> do you agree with b) as the preferred solution? |
Since we now have the |
Steps to reproduce
Expected behaviour
file should be restored
Actual behaviour
file is not restored. Error:
Restoration of file failed The destination node is not found
The user has no idea from where the file came from. see #1525
So its very hard to restore the file
The text was updated successfully, but these errors were encountered: