-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
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
Add command to list orphan objects #51603
Conversation
c3ed005
to
18e9980
Compare
use Symfony\Component\Console\Output\OutputInterface; | ||
|
||
class ObjectUtil { | ||
class ObjectUtil extends Base { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why is that needed?
It’s really weird for this helper that’s not a command or a command parent to extend Base
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's to get access to the output helpers
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I still don’t like it. It should either be a parent class to the commands, or a trait that they use.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Moved the streaming output logic to Base
so it no longer needs to inherit here
89a4b67
to
a157ba7
Compare
Signed-off-by: Robin Appelman <robin@icewind.nl>
Signed-off-by: Robin Appelman <robin@icewind.nl>
Signed-off-by: Robin Appelman <robin@icewind.nl>
Signed-off-by: Robin Appelman <robin@icewind.nl>
Signed-off-by: Robin Appelman <robin@icewind.nl>
a91f313
to
7ce06f4
Compare
Adds the following commands:
occ files:object:info <object id>
get metadata from an objectocc files:object:list
list all objectsocc files:object:orphans
list all objects not referenced in the databaseOnly implemented for S3 at the moment