]> cat aescling's git repositories - mastodon.git/commitdiff
Add foreign key to prevent reblogs of non-existent (after race conditions) statuses...
authorEugen Rochko <eugen@zeonfederated.com>
Fri, 17 Feb 2017 01:33:10 +0000 (02:33 +0100)
committerEugen Rochko <eugen@zeonfederated.com>
Fri, 17 Feb 2017 01:33:10 +0000 (02:33 +0100)
Fix issue with detailed status view not supporting unreblogging/unfavouriting

app/assets/javascripts/components/features/status/index.jsx
db/migrate/20170217012631_add_reblog_of_id_foreign_key_to_statuses.rb [new file with mode: 0644]
db/schema.rb

index e269bb6612c038d89370026f739cabd80b9812de..40c0460a5949d33fc0343e14127ca8a5cde37f04 100644 (file)
@@ -66,7 +66,11 @@ const Status = React.createClass({
   },
 
   handleFavouriteClick (status) {
-    this.props.dispatch(favourite(status));
+    if (status.get('favourited')) {
+      this.props.dispatch(unfavourite(status));
+    } else {
+      this.props.dispatch(favourite(status));
+    }
   },
 
   handleReplyClick (status) {
@@ -74,7 +78,11 @@ const Status = React.createClass({
   },
 
   handleReblogClick (status) {
-    this.props.dispatch(reblog(status));
+    if (status.get('reblogged')) {
+      this.props.dispatch(unreblog(status));
+    } else {
+      this.props.dispatch(reblog(status));
+    }
   },
 
   handleDeleteClick (status) {
diff --git a/db/migrate/20170217012631_add_reblog_of_id_foreign_key_to_statuses.rb b/db/migrate/20170217012631_add_reblog_of_id_foreign_key_to_statuses.rb
new file mode 100644 (file)
index 0000000..175d404
--- /dev/null
@@ -0,0 +1,5 @@
+class AddReblogOfIdForeignKeyToStatuses < ActiveRecord::Migration[5.0]
+  def change
+    add_foreign_key :statuses, :statuses, column: :reblog_of_id, on_delete: :cascade
+  end
+end
index 8fa0c056cd38d2fc9cf9cf436ae78825c78a3718..fa5c40774c075eb9fcf8a7bdeef0405fbba763b2 100644 (file)
@@ -10,7 +10,7 @@
 #
 # It's strongly recommended that you check this file into your version control system.
 
-ActiveRecord::Schema.define(version: 20170214110202) do
+ActiveRecord::Schema.define(version: 20170217012631) do
 
   # These are extensions that must be enabled in order to support this database
   enable_extension "plpgsql"
@@ -289,4 +289,5 @@ ActiveRecord::Schema.define(version: 20170214110202) do
     t.index ["user_id"], name: "index_web_settings_on_user_id", unique: true, using: :btree
   end
 
+  add_foreign_key "statuses", "statuses", column: "reblog_of_id", on_delete: :cascade
 end