Button Customization

Okay in my website i offer some files to download for Subscribers,
subscribers can access page called MEMBERS
there are some plans members are subscribed on, which are BRONZE, SILVER, GOLD.
i want to customize thing which can allow this:
BRONZE members can download 1 file a week.
SILVER members can download 2 files a week.
GOLD CAN 5 files a week.

any suggestions?

Track the downloads using a database collection and enforce the number of downloads policy.

Your have APIs to get the plan.

Once a user downloads a file, add a record in the database that they did so.

On request to download (to get the download link) check the number of downloads the user has done in the last week and make the decision to proceed or not