Page MenuHomePhabricator

[keyserver] add script to populate `policy_acknowledgments` table
AbandonedPublic

Authored by kamil on Oct 6 2022, 4:10 AM.
Tags
None
Referenced Files
Unknown Object (File)
Wed, Jun 26, 12:24 PM
Unknown Object (File)
Wed, Jun 26, 12:24 PM
Unknown Object (File)
Wed, Jun 26, 12:24 PM
Unknown Object (File)
Wed, Jun 26, 12:22 PM
Unknown Object (File)
Fri, Jun 21, 1:24 AM
Unknown Object (File)
Mon, Jun 17, 2:56 AM
Unknown Object (File)
Mon, Jun 17, 2:56 AM
Unknown Object (File)
Mon, Jun 17, 2:56 AM

Details

Summary

Script to initially populate policy_acknowledgments table assuming that all current users have already accepted the given policy.

IGNORE clause is for situations when the script will be executed twice to don't change history.

Test Plan
  1. run yarn script dist/scripts/populate-policies-acknowledgment.js
  2. script should add rows to policy_acknowledgments for all users for the given policy with current time and confirmed set to 1. (if the row with given user and policy do not exist).
  3. running twice should not changing anything

Diff Detail

Repository
rCOMM Comm
Lint
No Lint Coverage
Unit
No Test Coverage

Event Timeline

kamil held this revision as a draft.
kamil edited the test plan for this revision. (Show Details)
kamil added a reviewer: atul.
kamil published this revision for review.Oct 6 2022, 4:50 AM
ashoat requested changes to this revision.Oct 6 2022, 6:15 AM
ashoat added inline comments.
keyserver/src/scripts/populate-policies-acknowledgment.js
1 ↗(On Diff #17380)

Nit: extra newline after // @flow to match the rest of the codebase

13–17 ↗(On Diff #17380)

Can you fix the spacing issues? Make it look like other queries in the codebase. In general, each line should not be indented more than one indentation past the previous line

15 ↗(On Diff #17380)

Personally I would just use policyTypes.tosAndPrivacyPolicy here

This revision now requires changes to proceed.Oct 6 2022, 6:15 AM
marcin requested changes to this revision.EditedOct 10 2022, 2:40 AM

Script to initially populate policy_acknowledgments table assuming that all current users have already accepted the given policy.

It is not clear for me why do we assume that all users accepted policy when it is inserted into table for the first time but since you wrote it in the diff summary then I assume it is explicitly required in corresponding Linear issue so I am not going to dig into that.

Separately I am of an opinion that it is better to implement this function in a way that it iterates over all policy types to execute appropriate SQL query.
Requesting changes to get it implemented or see explanation why approach above is better.

It is not clear for me why do we assume that all users accepted policy when it is inserted into table for the first time but since you wrote it in the diff summary then I assume it is explicitly required in corresponding Linear issue so I am not going to dig into that.

To create an account, you have to accept the policies... so everybody with an account has already accepted them. The goal of the Linear task is to support changing the policies and then requiring everybody to re-accept the new policies.

Separately I am of an opinion that it is better to implement this function in a way that it iterates over all policy types to execute appropriate SQL query.
Requesting changes to get it implemented or see explanation why approach above is better.

Wouldn't hurt, but keep in mind that this is a simple one-time script, so code quality / thoroughness is not so important here.

marcin added a reviewer: tomek.
marcin added inline comments.
keyserver/src/scripts/populate-policies-acknowledgment.js
14 ↗(On Diff #17380)

On one hand we intend this script to be one-time script but on the other we prevent it from terminating if we happen to run it twice. Wouldn't it be ok to actually let it terminate in case it is executed twice or at least provide some information for person executing this script that it was already executed?

keyserver/src/scripts/populate-policies-acknowledgment.js
14 ↗(On Diff #17380)

I'm confused... what happens if it's run twice? What prevents it from terminating?

fix spacing issue, add new line, remove const

keyserver/src/scripts/populate-policies-acknowledgment.js
14 ↗(On Diff #17380)

On one hand we intend this script to be one-time script but on the other we prevent it from terminating if we happen to run it twice. Wouldn't it be ok to actually let it terminate in case it is executed twice or at least provide some information for person executing this script that it was already executed?

I'm confused... what happens if it's run twice? What prevents it from terminating?

What I believe @marcin's concerned about is the fact of using INSERT IGNORE instead of plain INSERT.

The script is not intended to run twice but I tried to make it save even if someone will do it.
The second thing which in my opinion makes IGNORE is a case where those changes will be deployed and between deployment and running a script will be a time gap, and if new user will sign in within this gap there will be an entry in table and script will fail. I know it's not so possible with the current amount of users but why not make it easier for someone responsible for running it.

tomek requested changes to this revision.Oct 12 2022, 5:14 AM

Running this script manually seems like an unnecessary task - we can use our migrations to do it for us.

So I would propose the following ordering of operations:

  1. Introduce a migration that creates the table - done in previous diffs
  2. Introduce code that inserts values into the table when user signs up
  3. Add a migration that inserts values for all the registered users - this diff
  4. Change the logic to insert / update when user actually accepts (during login from login screen) instead of during the registration - later in the stack

This approach feels safer because:

  1. We don't rely on running manual action
  2. It is not possible for someone to deny the condition and be marked as accepted

The 2nd point is important, because when we run this script manually, we need to chose when to run it. If we do that before inserting into / updating the policy table after logout is in place, we could have users that accepted the terms but weren't marked as so (it isn't a huge issue but it's better to avoid it - they would need to accept again when we start requiring it). If we do it after we start marking terms as accepted after login from the login screen, we could have another issue: what if, before we run this script, a registered user decided to not login due to the terms? The user would get marked as accepted, when we run this script, because the account was created.

So depending on how important the issues sound to us, we can decide to use more complicated approach with migration, or keep the manual one. So it's probably up to @ashoat. (we can also decide to release the logic and the migration at once, which will be the simplest approach).

This revision now requires changes to proceed.Oct 12 2022, 5:14 AM

Good point from @tomek, I agree

keyserver/src/scripts/populate-policies-acknowledgment.js
12–14

Please see my nits from D5310 and apply them here too

The script is not intended to run twice but I tried to make it save even if someone will do it.

The second thing which in my opinion makes IGNORE is a case where those changes will be deployed and between deployment and running a script will be a time gap, and if new user will sign in within this gap there will be an entry in table and script will fail. I know it's not so possible with the current amount of users but why not make it easier for someone responsible for running it.

This sounds reasonable to me.