Closed Bug 762224 Opened 13 years ago Closed 12 years ago

Don't list apps installed during review in Account History for Reviewers

Categories

(Marketplace Graveyard :: Consumer Pages, defect, P3)

defect

Tracking

(Not tracked)

RESOLVED FIXED
2012-12-13

People

(Reporter: krupa.mozbugs, Assigned: andy+bugzilla)

References

()

Details

steps to reproduce: 1. As a Reviewer, go to https://marketplace-dev.allizom.org/en-US/reviewers/apps/review/communities?num=6 2. Install the app 3. Navigate to your Account History page. expected behavior: We don't list apps installed from the Reviewer Tools in the Account History page. actual behavior: The app gets listed in the Account History. For an active reviewer, this would result in hundreds of apps (with expired receipts) getting listed in their Account History.
good idea!
Priority: -- → P3
No longer blocks: 752013
This still happens. We need to fix this before it becomes an issue.
Assignee: nobody → mattbasta
Target Milestone: --- → 2012-11-15
So I don't know if I'm the most qualified person to look at this. Andy might know better how to make this work. From what I can tell, removing the installed flag for an app for a user will break the ability to create a receipt for the installation, meaning reviewers won't be able to test paid apps (if I'm reading this correctly). The code in question is here: https://github.com/mozilla/zamboni/blob/master/mkt/receipts/views.py I'm not sure what's required to make the (paid?) apps work.
Reviewers should be getting special receipts that don't require an entry into Installed to work. So we should be able to remove this without issue. It looks like we are creating an Installed record however here: https://github.com/mozilla/zamboni/blob/master/mkt/receipts/views.py#L170 I'm betting we can do some security checks and make sure that when the receipt flavour is delicious reviewer flavour, we don't create that installed record. This will require altering the create_receipt method: https://github.com/mozilla/zamboni/blob/master/mkt/receipts/utils.py#L18 So that we don't pass in the (now non-existing) installed record.
Target Milestone: 2012-11-15 → 2012-11-22
Yeah, I'm pretty sure that's not going to work: 1. The receipt verifier requires that there's a user_install record that matches the UUID of the receipt: https://github.com/mozilla/zamboni/blob/master/services/verify.py#L94 2. create_receipt requires a user_install record in order to sign the receipt: https://github.com/mozilla/zamboni/blob/master/mkt/receipts/utils.py#L18 I've already got code that works around this, but the UUID that's pushed into the receipt isn't something that I can just fake, unless we make a constant that has a special "reviewer UUID". Is there a convenient (i.e.: not hacked-up) way to work around this?
Target Milestone: 2012-11-22 → 2012-11-29
Target Milestone: 2012-11-29 → 2012-12-06
Andy - can you and robhudson have a look at this? Rob is doing all the reviewer tools work and you'll know how the receipt work best
Assignee: mattbasta → amckay
Target Milestone: 2012-12-06 → 2012-12-13
How about adding a column to the installed table that shows who the receipt was created for. That will allow us to track what installer looked at what app and also allow installers to install as either a user or reviewer. Then we filter the list of apps to ignore reviewer installs. The only downside is that statistics should probably ignore this table, but they have to do that already.
Status: NEW → RESOLVED
Closed: 12 years ago
Resolution: --- → FIXED
You need to log in before you can comment on or make changes to this bug.