We are using Scriptrunner for Bitbucket and inside a a pre-hook , we are trying to retrieve for each newly added file:
- file extension (this part is already done)
- file size
We can't seem to find a way in the Bitbucket API to get from the objects pre-receive hook has ( collection of com.atlassian.bitbucket.repository.RefChange each with a colleciton of com.atlassian.bitbucket.content.Change ) to file size.
Since https://scriptrunner.adaptavist.com/5.6.1/bitbucket/PreReceiveHooks.html#_restrict_file_size exists , this must be possible - but we want to do it in a custom script in order to do custom logging of each file added and their size (audit reasons) and take custom actions.
Does someone know how to get the size of the files?