Add unsubscribe link to changeset notification mails
This commit is contained in:
parent
8e21e4e801
commit
f0764d3eca
12 changed files with 227 additions and 4 deletions
|
@ -36,6 +36,7 @@ class Ability
|
||||||
can [:show], :deletion
|
can [:show], :deletion
|
||||||
|
|
||||||
if Settings.status != "database_offline"
|
if Settings.status != "database_offline"
|
||||||
|
can [:subscribe, :unsubscribe], Changeset
|
||||||
can [:index, :new, :create, :show, :edit, :update, :destroy], ClientApplication
|
can [:index, :new, :create, :show, :edit, :update, :destroy], ClientApplication
|
||||||
can [:index, :new, :create, :show, :edit, :update, :destroy], :oauth2_application
|
can [:index, :new, :create, :show, :edit, :update, :destroy], :oauth2_application
|
||||||
can [:index, :destroy], :oauth2_authorized_application
|
can [:index, :destroy], :oauth2_authorized_application
|
||||||
|
|
|
@ -9,6 +9,7 @@ class ChangesetsController < ApplicationController
|
||||||
before_action :authorize_web
|
before_action :authorize_web
|
||||||
before_action :set_locale
|
before_action :set_locale
|
||||||
before_action -> { check_database_readable(:need_api => true) }, :only => [:index, :feed]
|
before_action -> { check_database_readable(:need_api => true) }, :only => [:index, :feed]
|
||||||
|
before_action :check_database_writable, :only => [:subscribe, :unsubscribe]
|
||||||
|
|
||||||
authorize_resource
|
authorize_resource
|
||||||
|
|
||||||
|
@ -74,6 +75,34 @@ class ChangesetsController < ApplicationController
|
||||||
index
|
index
|
||||||
end
|
end
|
||||||
|
|
||||||
|
##
|
||||||
|
# subscribe to a changeset
|
||||||
|
def subscribe
|
||||||
|
@changeset = Changeset.find(params[:id])
|
||||||
|
|
||||||
|
if request.post?
|
||||||
|
@changeset.subscribe(current_user) unless @changeset.subscribed?(current_user)
|
||||||
|
|
||||||
|
redirect_to changeset_path(@changeset)
|
||||||
|
end
|
||||||
|
rescue ActiveRecord::RecordNotFound
|
||||||
|
render :action => "no_such_entry", :status => :not_found
|
||||||
|
end
|
||||||
|
|
||||||
|
##
|
||||||
|
# unsubscribe from a changeset
|
||||||
|
def unsubscribe
|
||||||
|
@changeset = Changeset.find(params[:id])
|
||||||
|
|
||||||
|
if request.post?
|
||||||
|
@changeset.unsubscribe(current_user)
|
||||||
|
|
||||||
|
redirect_to changeset_path(@changeset)
|
||||||
|
end
|
||||||
|
rescue ActiveRecord::RecordNotFound
|
||||||
|
render :action => "no_such_entry", :status => :not_found
|
||||||
|
end
|
||||||
|
|
||||||
private
|
private
|
||||||
|
|
||||||
#------------------------------------------------------------
|
#------------------------------------------------------------
|
||||||
|
|
|
@ -162,6 +162,7 @@ class UserMailer < ApplicationMailer
|
||||||
@changeset_comment = comment.changeset.tags["comment"].presence
|
@changeset_comment = comment.changeset.tags["comment"].presence
|
||||||
@time = comment.created_at
|
@time = comment.created_at
|
||||||
@changeset_author = comment.changeset.user.display_name
|
@changeset_author = comment.changeset.user.display_name
|
||||||
|
@unsubscribe_url = changeset_unsubscribe_url(comment.changeset)
|
||||||
@author = @commenter
|
@author = @commenter
|
||||||
|
|
||||||
subject = if @owner
|
subject = if @owner
|
||||||
|
|
15
app/views/changesets/_heading.html.erb
Normal file
15
app/views/changesets/_heading.html.erb
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
<% title = changeset.tags["comment"].to_s.presence || t(".title", :id => changeset.id) -%>
|
||||||
|
<div class='mb-3'>
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-auto">
|
||||||
|
<%= user_thumbnail changeset.user %>
|
||||||
|
</div>
|
||||||
|
<div class="col">
|
||||||
|
<h2><%= link_to title, changeset_path(changeset) %></h2>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<small class='text-muted'>
|
||||||
|
<%= t(".created_by_html", :link_user => link_to(changeset.user.display_name, user_path(changeset.user)), :created => l(changeset.created_at, :format => :blog)) %>
|
||||||
|
</small>
|
||||||
|
</div>
|
5
app/views/changesets/no_such_entry.html.erb
Normal file
5
app/views/changesets/no_such_entry.html.erb
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
<% content_for :heading do %>
|
||||||
|
<h1><%= t ".heading", :id => h(params[:id]) %></h1>
|
||||||
|
<% end %>
|
||||||
|
|
||||||
|
<p><%= t ".body", :id => h(params[:id]) %></p>
|
12
app/views/changesets/subscribe.html.erb
Normal file
12
app/views/changesets/subscribe.html.erb
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
<% content_for :heading do %>
|
||||||
|
<h1><%= t ".heading" %></h1>
|
||||||
|
<% end %>
|
||||||
|
|
||||||
|
<%= render :partial => "heading", :object => @changeset, :as => "changeset" %>
|
||||||
|
|
||||||
|
<%= bootstrap_form_tag do |f| %>
|
||||||
|
<% if params[:referer] -%>
|
||||||
|
<%= f.hidden_field :referer, :value => params[:referer] %>
|
||||||
|
<% end -%>
|
||||||
|
<%= f.primary t(".button") %>
|
||||||
|
<% end %>
|
12
app/views/changesets/unsubscribe.html.erb
Normal file
12
app/views/changesets/unsubscribe.html.erb
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
<% content_for :heading do %>
|
||||||
|
<h1><%= t ".heading" %></h1>
|
||||||
|
<% end %>
|
||||||
|
|
||||||
|
<%= render :partial => "heading", :object => @changeset, :as => "changeset" %>
|
||||||
|
|
||||||
|
<%= bootstrap_form_tag do |f| %>
|
||||||
|
<% if params[:referer] -%>
|
||||||
|
<%= f.hidden_field :referer, :value => params[:referer] %>
|
||||||
|
<% end -%>
|
||||||
|
<%= f.primary t(".button") %>
|
||||||
|
<% end %>
|
|
@ -24,6 +24,6 @@
|
||||||
|
|
||||||
<% content_for :footer do %>
|
<% content_for :footer do %>
|
||||||
<p>
|
<p>
|
||||||
<%= t ".unsubscribe_html", :url => link_to(@changeset_url, @changeset_url, :style => "color: #222") %>
|
<%= t ".unsubscribe_html", :url => link_to(@unsubscribe_url, @unsubscribe_url) %>
|
||||||
</p>
|
</p>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
|
|
@ -17,4 +17,4 @@
|
||||||
|
|
||||||
<%= t '.details', :url => @changeset_url %>
|
<%= t '.details', :url => @changeset_url %>
|
||||||
|
|
||||||
<%= t '.unsubscribe', :url => @changeset_url %>
|
<%= t '.unsubscribe', :url => @unsubscribe_url %>
|
||||||
|
|
|
@ -464,6 +464,19 @@ en:
|
||||||
feed:
|
feed:
|
||||||
title: "Changeset %{id}"
|
title: "Changeset %{id}"
|
||||||
title_comment: "Changeset %{id} - %{comment}"
|
title_comment: "Changeset %{id} - %{comment}"
|
||||||
|
subscribe:
|
||||||
|
heading: Subscribe to the following changeset discussion?
|
||||||
|
button: Subscribe to discussion
|
||||||
|
unsubscribe:
|
||||||
|
heading: Unsubscribe from the following changeset discussion?
|
||||||
|
button: Unsubscribe from discussion
|
||||||
|
heading:
|
||||||
|
title: "Changeset %{id}"
|
||||||
|
created_by_html: "Created by %{link_user} on %{created}."
|
||||||
|
no_such_entry:
|
||||||
|
title: "No such changeset"
|
||||||
|
heading: "No entry with the id: %{id}"
|
||||||
|
body: "Sorry, there is no changeset with the id %{id}. Please check your spelling, or maybe the link you clicked is wrong."
|
||||||
timeout:
|
timeout:
|
||||||
sorry: "Sorry, the list of changesets you requested took too long to retrieve."
|
sorry: "Sorry, the list of changesets you requested took too long to retrieve."
|
||||||
changeset_comments:
|
changeset_comments:
|
||||||
|
@ -1667,8 +1680,8 @@ en:
|
||||||
partial_changeset_without_comment: "without comment"
|
partial_changeset_without_comment: "without comment"
|
||||||
details: "More details about the changeset can be found at %{url}."
|
details: "More details about the changeset can be found at %{url}."
|
||||||
details_html: "More details about the changeset can be found at %{url}."
|
details_html: "More details about the changeset can be found at %{url}."
|
||||||
unsubscribe: 'To unsubscribe from updates to this changeset, visit %{url} and click "Unsubscribe".'
|
unsubscribe: "You can unsubscribe from updates to this changeset at %{url}."
|
||||||
unsubscribe_html: 'To unsubscribe from updates to this changeset, visit %{url} and click "Unsubscribe".'
|
unsubscribe_html: "You can unsubscribe from updates to this changeset at %{url}."
|
||||||
confirmations:
|
confirmations:
|
||||||
confirm:
|
confirm:
|
||||||
heading: Check your email!
|
heading: Check your email!
|
||||||
|
|
|
@ -127,6 +127,8 @@ OpenStreetMap::Application.routes.draw do
|
||||||
get "/user/:display_name/notes" => "notes#index", :as => :user_notes
|
get "/user/:display_name/notes" => "notes#index", :as => :user_notes
|
||||||
get "/history/friends" => "changesets#index", :friends => true, :as => "friend_changesets", :defaults => { :format => :html }
|
get "/history/friends" => "changesets#index", :friends => true, :as => "friend_changesets", :defaults => { :format => :html }
|
||||||
get "/history/nearby" => "changesets#index", :nearby => true, :as => "nearby_changesets", :defaults => { :format => :html }
|
get "/history/nearby" => "changesets#index", :nearby => true, :as => "nearby_changesets", :defaults => { :format => :html }
|
||||||
|
match "/changeset/:id/subscribe" => "changesets#subscribe", :via => [:get, :post], :as => "changeset_subscribe"
|
||||||
|
match "/changeset/:id/unsubscribe" => "changesets#unsubscribe", :via => [:get, :post], :as => "changeset_unsubscribe"
|
||||||
|
|
||||||
get "/browse/way/:id", :to => redirect(:path => "/way/%{id}")
|
get "/browse/way/:id", :to => redirect(:path => "/way/%{id}")
|
||||||
get "/browse/way/:id/history", :to => redirect(:path => "/way/%{id}/history")
|
get "/browse/way/:id/history", :to => redirect(:path => "/way/%{id}/history")
|
||||||
|
|
|
@ -28,6 +28,22 @@ class ChangesetsControllerTest < ActionDispatch::IntegrationTest
|
||||||
{ :path => "/history/feed", :method => :get },
|
{ :path => "/history/feed", :method => :get },
|
||||||
{ :controller => "changesets", :action => "feed", :format => :atom }
|
{ :controller => "changesets", :action => "feed", :format => :atom }
|
||||||
)
|
)
|
||||||
|
assert_routing(
|
||||||
|
{ :path => "/changeset/1/subscribe", :method => :get },
|
||||||
|
{ :controller => "changesets", :action => "subscribe", :id => "1" }
|
||||||
|
)
|
||||||
|
assert_routing(
|
||||||
|
{ :path => "/changeset/1/subscribe", :method => :post },
|
||||||
|
{ :controller => "changesets", :action => "subscribe", :id => "1" }
|
||||||
|
)
|
||||||
|
assert_routing(
|
||||||
|
{ :path => "/changeset/1/unsubscribe", :method => :get },
|
||||||
|
{ :controller => "changesets", :action => "unsubscribe", :id => "1" }
|
||||||
|
)
|
||||||
|
assert_routing(
|
||||||
|
{ :path => "/changeset/1/unsubscribe", :method => :post },
|
||||||
|
{ :controller => "changesets", :action => "unsubscribe", :id => "1" }
|
||||||
|
)
|
||||||
end
|
end
|
||||||
|
|
||||||
##
|
##
|
||||||
|
@ -319,6 +335,123 @@ class ChangesetsControllerTest < ActionDispatch::IntegrationTest
|
||||||
assert_redirected_to :action => :feed
|
assert_redirected_to :action => :feed
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def test_subscribe_page
|
||||||
|
user = create(:user)
|
||||||
|
other_user = create(:user)
|
||||||
|
changeset = create(:changeset, :user => user)
|
||||||
|
path = changeset_subscribe_path(changeset)
|
||||||
|
|
||||||
|
get path
|
||||||
|
assert_response :redirect
|
||||||
|
assert_redirected_to login_path(:referer => path)
|
||||||
|
|
||||||
|
session_for(other_user)
|
||||||
|
get path
|
||||||
|
assert_response :success
|
||||||
|
assert_dom ".content-body" do
|
||||||
|
assert_dom "a[href='#{changeset_path(changeset)}']", :text => "Changeset #{changeset.id}"
|
||||||
|
assert_dom "a[href='#{user_path(user)}']", :text => user.display_name
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
def test_subscribe_success
|
||||||
|
user = create(:user)
|
||||||
|
other_user = create(:user)
|
||||||
|
changeset = create(:changeset, :user => user)
|
||||||
|
|
||||||
|
session_for(other_user)
|
||||||
|
assert_difference "changeset.subscribers.count", 1 do
|
||||||
|
post changeset_subscribe_path(changeset)
|
||||||
|
end
|
||||||
|
assert_response :redirect
|
||||||
|
assert_redirected_to changeset_path(changeset)
|
||||||
|
assert changeset.reload.subscribed?(other_user)
|
||||||
|
end
|
||||||
|
|
||||||
|
def test_subscribe_fail
|
||||||
|
user = create(:user)
|
||||||
|
other_user = create(:user)
|
||||||
|
|
||||||
|
changeset = create(:changeset, :user => user)
|
||||||
|
|
||||||
|
# not signed in
|
||||||
|
assert_no_difference "changeset.subscribers.count" do
|
||||||
|
post changeset_subscribe_path(changeset)
|
||||||
|
end
|
||||||
|
assert_response :forbidden
|
||||||
|
|
||||||
|
session_for(other_user)
|
||||||
|
|
||||||
|
# bad diary id
|
||||||
|
post changeset_subscribe_path(999111)
|
||||||
|
assert_response :not_found
|
||||||
|
|
||||||
|
# trying to subscribe when already subscribed
|
||||||
|
post changeset_subscribe_path(changeset)
|
||||||
|
assert_no_difference "changeset.subscribers.count" do
|
||||||
|
post changeset_subscribe_path(changeset)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
def test_unsubscribe_page
|
||||||
|
user = create(:user)
|
||||||
|
other_user = create(:user)
|
||||||
|
changeset = create(:changeset, :user => user)
|
||||||
|
path = changeset_unsubscribe_path(changeset)
|
||||||
|
|
||||||
|
get path
|
||||||
|
assert_response :redirect
|
||||||
|
assert_redirected_to login_path(:referer => path)
|
||||||
|
|
||||||
|
session_for(other_user)
|
||||||
|
get path
|
||||||
|
assert_response :success
|
||||||
|
assert_dom ".content-body" do
|
||||||
|
assert_dom "a[href='#{changeset_path(changeset)}']", :text => "Changeset #{changeset.id}"
|
||||||
|
assert_dom "a[href='#{user_path(user)}']", :text => user.display_name
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
def test_unsubscribe_success
|
||||||
|
user = create(:user)
|
||||||
|
other_user = create(:user)
|
||||||
|
|
||||||
|
changeset = create(:changeset, :user => user)
|
||||||
|
changeset.subscribers.push(other_user)
|
||||||
|
|
||||||
|
session_for(other_user)
|
||||||
|
assert_difference "changeset.subscribers.count", -1 do
|
||||||
|
post changeset_unsubscribe_path(changeset)
|
||||||
|
end
|
||||||
|
assert_response :redirect
|
||||||
|
assert_redirected_to changeset_path(changeset)
|
||||||
|
assert_not changeset.reload.subscribed?(other_user)
|
||||||
|
end
|
||||||
|
|
||||||
|
def test_unsubscribe_fail
|
||||||
|
user = create(:user)
|
||||||
|
other_user = create(:user)
|
||||||
|
|
||||||
|
changeset = create(:changeset, :user => user)
|
||||||
|
|
||||||
|
# not signed in
|
||||||
|
assert_no_difference "changeset.subscribers.count" do
|
||||||
|
post changeset_unsubscribe_path(changeset)
|
||||||
|
end
|
||||||
|
assert_response :forbidden
|
||||||
|
|
||||||
|
session_for(other_user)
|
||||||
|
|
||||||
|
# bad diary id
|
||||||
|
post changeset_unsubscribe_path(999111)
|
||||||
|
assert_response :not_found
|
||||||
|
|
||||||
|
# trying to unsubscribe when not subscribed
|
||||||
|
assert_no_difference "changeset.subscribers.count" do
|
||||||
|
post changeset_unsubscribe_path(changeset)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
private
|
private
|
||||||
|
|
||||||
##
|
##
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue