--- /dev/null
+# frozen_string_literal: true
+
+class Api::V1::MarkersController < Api::BaseController
+ before_action -> { doorkeeper_authorize! :read, :'read:statuses' }, only: [:index]
+ before_action -> { doorkeeper_authorize! :write, :'write:statuses' }, except: [:index]
+
+ before_action :require_user!
+
+ def index
+ @markers = current_user.markers.where(timeline: Array(params[:timeline])).each_with_object({}) { |marker, h| h[marker.timeline] = marker }
+ render json: serialize_map(@markers)
+ end
+
+ def create
+ Marker.transaction do
+ @markers = {}
+
+ resource_params.each_pair do |timeline, timeline_params|
+ @markers[timeline] = current_user.markers.find_or_initialize_by(timeline: timeline)
+ @markers[timeline].update!(timeline_params)
+ end
+ end
+
+ render json: serialize_map(@markers)
+ rescue ActiveRecord::StaleObjectError
+ render json: { error: 'Conflict during update, please try again' }, status: 409
+ end
+
+ private
+
+ def serialize_map(map)
+ serialized = {}
+
+ map.each_pair do |key, value|
+ serialized[key] = ActiveModelSerializers::SerializableResource.new(value, serializer: REST::MarkerSerializer).as_json
+ end
+
+ Oj.dump(serialized)
+ end
+
+ def resource_params
+ params.slice(*Marker::TIMELINES).permit(*Marker::TIMELINES.map { |timeline| { timeline.to_sym => [:last_read_id] } })
+ end
+end
--- /dev/null
+export const submitMarkers = () => (dispatch, getState) => {
+ const accessToken = getState().getIn(['meta', 'access_token'], '');
+ const params = {};
+
+ const lastHomeId = getState().getIn(['timelines', 'home', 'items', 0]);
+ const lastNotificationId = getState().getIn(['notifications', 'items', 0, 'id']);
+
+ if (lastHomeId) {
+ params.home = {
+ last_read_id: lastHomeId,
+ };
+ }
+
+ if (lastNotificationId) {
+ params.notifications = {
+ last_read_id: lastNotificationId,
+ };
+ }
+
+ if (Object.keys(params).length === 0) {
+ return;
+ }
+
+ const client = new XMLHttpRequest();
+
+ client.open('POST', '/api/v1/markers', false);
+ client.setRequestHeader('Content-Type', 'application/json');
+ client.setRequestHeader('Authorization', `Bearer ${accessToken}`);
+ client.send(JSON.stringify(params));
+};
import { fetchFilters } from '../../actions/filters';
import { clearHeight } from '../../actions/height_cache';
import { focusApp, unfocusApp } from 'mastodon/actions/app';
+import { submitMarkers } from 'mastodon/actions/markers';
import { WrappedSwitch, WrappedRoute } from './util/react_router_helpers';
import UploadArea from './components/upload_area';
import ColumnsAreaContainer from './containers/columns_area_container';
};
handleBeforeUnload = e => {
- const { intl, isComposing, hasComposingText, hasMediaAttachments } = this.props;
+ const { intl, dispatch, isComposing, hasComposingText, hasMediaAttachments } = this.props;
+
+ dispatch(submitMarkers());
if (isComposing && (hasComposingText || hasMediaAttachments)) {
// Setting returnValue to any string causes confirmation dialog.
--- /dev/null
+# frozen_string_literal: true
+
+# == Schema Information
+#
+# Table name: markers
+#
+# id :bigint(8) not null, primary key
+# user_id :bigint(8)
+# timeline :string default(""), not null
+# last_read_id :bigint(8) default(0), not null
+# lock_version :integer default(0), not null
+# created_at :datetime not null
+# updated_at :datetime not null
+#
+
+class Marker < ApplicationRecord
+ TIMELINES = %w(home notifications).freeze
+
+ belongs_to :user
+
+ validates :timeline, :last_read_id, presence: true
+ validates :timeline, inclusion: { in: TIMELINES }
+end
has_many :applications, class_name: 'Doorkeeper::Application', as: :owner
has_many :backups, inverse_of: :user
has_many :invites, inverse_of: :user
+ has_many :markers, inverse_of: :user, dependent: :destroy
has_one :invite_request, class_name: 'UserInviteRequest', inverse_of: :user, dependent: :destroy
accepts_nested_attributes_for :invite_request, reject_if: ->(attributes) { attributes['text'].blank? }
--- /dev/null
+# frozen_string_literal: true
+
+class REST::MarkerSerializer < ActiveModel::Serializer
+ attributes :last_read_id, :version, :updated_at
+
+ def last_read_id
+ object.last_read_id.to_s
+ end
+
+ def version
+ object.lock_version
+ end
+end
resources :trends, only: [:index]
resources :filters, only: [:index, :create, :show, :update, :destroy]
resources :endorsements, only: [:index]
+ resources :markers, only: [:index, :create]
namespace :apps do
get :verify_credentials, to: 'credentials#show'
--- /dev/null
+class CreateMarkers < ActiveRecord::Migration[5.2]
+ def change
+ create_table :markers do |t|
+ t.references :user, foreign_key: { on_delete: :cascade, index: false }
+ t.string :timeline, default: '', null: false
+ t.bigint :last_read_id, default: 0, null: false
+ t.integer :lock_version, default: 0, null: false
+
+ t.timestamps
+ end
+
+ add_index :markers, [:user_id, :timeline], unique: true
+ end
+end
#
# It's strongly recommended that you check this file into your version control system.
-ActiveRecord::Schema.define(version: 2019_09_01_040524) do
+ActiveRecord::Schema.define(version: 2019_09_04_222339) do
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"
t.index ["account_id"], name: "index_lists_on_account_id"
end
+ create_table "markers", force: :cascade do |t|
+ t.bigint "user_id"
+ t.string "timeline", default: "", null: false
+ t.bigint "last_read_id", default: 0, null: false
+ t.integer "lock_version", default: 0, null: false
+ t.datetime "created_at", null: false
+ t.datetime "updated_at", null: false
+ t.index ["user_id", "timeline"], name: "index_markers_on_user_id_and_timeline", unique: true
+ t.index ["user_id"], name: "index_markers_on_user_id"
+ end
+
create_table "media_attachments", force: :cascade do |t|
t.bigint "status_id"
t.string "file_file_name"
add_foreign_key "list_accounts", "follows", on_delete: :cascade
add_foreign_key "list_accounts", "lists", on_delete: :cascade
add_foreign_key "lists", "accounts", on_delete: :cascade
+ add_foreign_key "markers", "users", on_delete: :cascade
add_foreign_key "media_attachments", "accounts", name: "fk_96dd81e81b", on_delete: :nullify
add_foreign_key "media_attachments", "scheduled_statuses", on_delete: :nullify
add_foreign_key "media_attachments", "statuses", on_delete: :nullify
--- /dev/null
+require 'rails_helper'
+
+RSpec.describe Api::V1::MarkersController, type: :controller do
+ render_views
+
+ let!(:user) { Fabricate(:user, account: Fabricate(:account, username: 'alice')) }
+ let!(:token) { Fabricate(:accessible_access_token, resource_owner_id: user.id, scopes: 'read:statuses write:statuses') }
+
+ before { allow(controller).to receive(:doorkeeper_token) { token } }
+
+ describe 'GET #index' do
+ before do
+ Fabricate(:marker, timeline: 'home', last_read_id: 123, user: user)
+ Fabricate(:marker, timeline: 'notifications', last_read_id: 456, user: user)
+
+ get :index, params: { timeline: %w(home notifications) }
+ end
+
+ it 'returns http success' do
+ expect(response).to have_http_status(200)
+ end
+
+ it 'returns markers' do
+ json = body_as_json
+
+ expect(json.key?(:home)).to be true
+ expect(json[:home][:last_read_id]).to eq '123'
+ expect(json.key?(:notifications)).to be true
+ expect(json[:notifications][:last_read_id]).to eq '456'
+ end
+ end
+
+ describe 'POST #create' do
+ context 'when no marker exists' do
+ before do
+ post :create, params: { home: { last_read_id: '69420' } }
+ end
+
+ it 'returns http success' do
+ expect(response).to have_http_status(200)
+ end
+
+ it 'creates a marker' do
+ expect(user.markers.first.timeline).to eq 'home'
+ expect(user.markers.first.last_read_id).to eq 69420
+ end
+ end
+
+ context 'when a marker exists' do
+ before do
+ post :create, params: { home: { last_read_id: '69420' } }
+ post :create, params: { home: { last_read_id: '70120' } }
+ end
+
+ it 'returns http success' do
+ expect(response).to have_http_status(200)
+ end
+
+ it 'updates a marker' do
+ expect(user.markers.first.timeline).to eq 'home'
+ expect(user.markers.first.last_read_id).to eq 70120
+ end
+ end
+ end
+end
--- /dev/null
+Fabricator(:marker) do
+ user
+ timeline 'home'
+ last_read_id 0
+ lock_version 0
+end
--- /dev/null
+require 'rails_helper'
+
+RSpec.describe Marker, type: :model do
+ pending "add some examples to (or delete) #{__FILE__}"
+end