-
Notifications
You must be signed in to change notification settings - Fork 637
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
Email all individual owners when a new version is published #1895
Comments
Thank you for making the implementation instructions so clear and easy to follow! I just put up a PR for the first point described here. On another note, would it be possible to make these points a check box to clarify to those just coming here what's been completed and what's left to do? Thanks a lot! |
Good call! I added check marks and checked off the one you're working on, thank you! |
Is there a strong preference here of using a radio input vs. a checkbox input? On first thought, it seems like a checkbox would be a little better...mainly because it's just a boolean value. |
I'm not sure! I'll admit that I'm mostly copying rubygems' interface, which we don't have to do if we don't want to :) |
…cents backend: Add user email preference storing This PR addresses the first step in implementing #1895: "Backend: email preference storing." This commit is the first step in the process to send crate owners an email notification when a new version of one of their crates is published. A database migration adds a `email_notifications` column to the `crate_owners` table, and thus the property was added to the corresponding `CrateOwner` struct. This new property is defaulted to `true`. Because a user may not want to receive a version publish notification for all of their crates, an API endpoint was added to allow them to toggle email notifications for each crate. The front end implementation will be in a forthcoming commit, as well as the actual sending of these notifications.
…10cents front-end: Add email notification preferences This commit adds the front-end capabilities to coincide with the API endpoint that was built on the server. There's also a small bug fixed in the api-token-row; it was throwing an error every time the "/me" route was loaded. This PR addresses the second item in #1895. I like how the UI ended up, but it may very well be creators bias 😄. If this doesn't work, then I'll be happy to iterate! ### Screenshot of a crate with notifications on and one that's off 
The last step for this (actually sending the email) looks like it's the last thing left to do now. Unless someone else is already on it, I'll see if I can get it done soon. The sooner the better because the associated profile settings are already visible to users. |
@liangyuanpeng it looks like you have a currently verified gmail addresses for your account. If you're still having issues, please open a separate issue so that this doesn't get lost. Thanks. |
Hi @carols10cents! I'd like to pick this one up to finish the last remaining task of sending out email notifications. 😄 I'm excited to dig in on it this weekend. It's been awhile since this issue has had some activity. Are you still a good point of contact/mentor for this issue? I did notice I was going to attempt to implement a function on |
Ah thanks, @paolobarbolini! Sorry I missed that PR while I was reading through the issue. |
The service is still not available, I would love to work on it/ |
There's still #2705, although it requires a rebase |
I'll take a look. Thanks! |
This was finally implemented by #9341 :) |
Extracted from #815
Now that we've been requiring verified email addresses for publishing, it's more likely this feature will work well.
This is a big task that's more complicated than it looks! Please ask questions if anything is confusing! This task would be great for someone looking to get experience with just about every part of crates.io: the frontend, the backend API, the database, email sending.
What should happen:
Implementation instructions
Roughly trying to separate these into pieces that can be submitted and reviewed as separate PRs; let me know if you run into any problems with the way I've split the tasks up.
Backend: email preference storing (addressed in backend: Add user email preference storing #1901)
diesel migration generate
in this guide) that adds a column to thecrate_owners
table... this isn't great because teams are also stored in this table and teams don't have emails, but I think this is the best spot for now. Name the column something likeemail_notifications
, of type boolean, and set the default to true. In the database dump configuration, set this new column toprivate
(we shouldn't include this value in public database dumps).owner_remove
function./me/email_notifications
or similar and calls a new controller function that I think would fit in theuser/me
controller, calledupdate_email_notifications
or similaremail_notifications
column of those records with the values sent. Updating the values unconditionally is fine, I think. Ignore any crates that the current user owns that we didn't get any radio button value for.encodable_private
response that uses theEncodablePrivate
struct. Minimally, this should be a vector of (crate name, crate id, email notification value) tuples, I think. Enough to display the form with the radio buttons described below.Frontend: settings (addressed in front-end: Add email notification preferences #1913)
/me
API request, I think the frontend should add a new section to https://crates.io/me whose HTML is here, as opposed to creating a whole separate page for email notifications./me/email_notifications
controller described above.Backend: email sending (no PR yet)
notify_owners
function. So use?
onrepo.commit_and_push
, and instead return the result fromnotify_owners
in thisadd_crate
function.add_crate
, theCrate
parameter is of this type, which currently doesn't have the owners available on it, nor should it because that is what gets serialized into the index. Theadd_crate
function doesn't currently use a database connection. Therefore, I'm thinkingadd_crate
should have a new parameter that's a vector of email addresses. Thenadd_crate
can callnotify_owners
with the email addresses, thekrate.name
,krate.vers
, andchrono::Utc::now()
.git::add_crate
is called, we'll need to get the unique set of verified email addresses of the named owners plus the verified email address of the person who published the crate, if we decide we want to do that (see bolded bullet point at the top where I'm conflicted about this). We already have the set of crate owners available, which is aVec
ofOwner
s. So iterate through the owners, and for user owners, if theiremail_notifications
value istrue
(the new column described above), collect the present verified email addresses into aHashSet
(to get unique ones) and (maybe, see above) add the publisher's verified email address.notify_owners
function will probably look liketry_send_user_confirm_email
and can go in that file. Use the screenshot above of the rubygems email as a general guide for what should be in the email, and ask questions here if you have any.The text was updated successfully, but these errors were encountered: