Browse Source

Fix text color in dashboard inputs, sanitize remote status content in UI,

simplify FanOutOnWriteService, add /api/accounts/lookup method
closed-social-glitch-2
Eugen Rochko 8 years ago
parent
commit
9d55529318
14 changed files with 85 additions and 13 deletions
  1. +3
    -0
      app/assets/javascripts/api/accounts/lookup.coffee
  2. +1
    -0
      app/assets/stylesheets/dashboard.scss
  3. +11
    -0
      app/controllers/api/accounts/lookup_controller.rb
  4. +2
    -0
      app/helpers/api/accounts/lookup_helper.rb
  5. +8
    -0
      app/helpers/stream_entries_helper.rb
  6. +3
    -1
      app/services/base_service.rb
  7. +12
    -7
      app/services/fan_out_on_write_service.rb
  8. +0
    -2
      app/services/send_interaction_service.rb
  9. +1
    -1
      app/views/accounts/_grid_card.html.haml
  10. +2
    -0
      app/views/api/accounts/lookup/index.rabl
  11. +1
    -2
      app/views/stream_entries/_status.html.haml
  12. +4
    -0
      config/routes.rb
  13. +22
    -0
      spec/controllers/api/accounts/lookup_controller_spec.rb
  14. +15
    -0
      spec/helpers/api/accounts/lookup_helper_spec.rb

+ 3
- 0
app/assets/javascripts/api/accounts/lookup.coffee View File

@ -0,0 +1,3 @@
# Place all the behaviors and hooks related to the matching controller here.
# All this logic will automatically be available in application.js.
# You can use CoffeeScript in this file: http://coffeescript.org/

+ 1
- 0
app/assets/stylesheets/dashboard.scss View File

@ -243,6 +243,7 @@
padding-bottom: 6px;
font-size: 14px;
font-family: 'Roboto', sans-serif;
color: #282c37;
&:focus, &:active {
border-bottom: 2px solid #2b90d9;

+ 11
- 0
app/controllers/api/accounts/lookup_controller.rb View File

@ -0,0 +1,11 @@
class Api::Accounts::LookupController < ApplicationController
def index
@accounts = Account.where(domain: nil).where(username: lookup_params)
end
private
def lookup_params
(params[:usernames] || '').split(',').map(&:strip)
end
end

+ 2
- 0
app/helpers/api/accounts/lookup_helper.rb View File

@ -0,0 +1,2 @@
module Api::Accounts::LookupHelper
end

+ 8
- 0
app/helpers/stream_entries_helper.rb View File

@ -27,4 +27,12 @@ module StreamEntriesHelper
def favourited_by_me_class(status)
user_signed_in? && current_user.account.favourited?(status) ? 'favourited' : ''
end
def content_for_status(actual_status)
if actual_status.local?
linkify(actual_status)
else
sanitize(actual_status.content, tags: %w(a br p), attributes: %w(href rel))
end
end
end

+ 3
- 1
app/services/base_service.rb View File

@ -1,6 +1,8 @@
class BaseService
include RoutingHelper
include ActionView::Helpers::TextHelper
include ActionView::Helpers::SanitizeHelper
include RoutingHelper
include ApplicationHelper
include AtomBuilderHelper
end

+ 12
- 7
app/services/fan_out_on_write_service.rb View File

@ -4,18 +4,25 @@ class FanOutOnWriteService < BaseService
# Push a status into home and mentions feeds
# @param [Status] status
def call(status)
replied_to_user = status.reply? ? status.thread.account : nil
deliver_to_self(status) if status.account.local?
deliver_to_followers(status, status.reply? ? status.thread.account : nil)
deliver_to_mentioned(status)
end
private
# Deliver to local self
push(:home, status.account.id, status) if status.account.local?
def deliver_to_self(status)
push(:home, status.account.id, status)
end
# Deliver to local followers
def deliver_to_followers(status, replied_to_user)
status.account.followers.each do |follower|
next if (status.reply? && !(follower.id = replied_to_user.id || follower.following?(replied_to_user))) || !follower.local?
push(:home, follower.id, status)
end
end
# Deliver to local mentioned
def deliver_to_mentioned(status)
status.mentioned_accounts.each do |mention|
mentioned_account = mention.account
next unless mentioned_account.local?
@ -23,8 +30,6 @@ class FanOutOnWriteService < BaseService
end
end
private
def push(type, receiver_id, status)
redis.zadd(key(type, receiver_id), status.created_at.to_i, status.id)
trim(type, receiver_id)

+ 0
- 2
app/services/send_interaction_service.rb View File

@ -1,6 +1,4 @@
class SendInteractionService < BaseService
include AtomBuilderHelper
# Send an Atom representation of an interaction to a remote Salmon endpoint
# @param [StreamEntry] stream_entry
# @param [Account] target_account

+ 1
- 1
app/views/accounts/_grid_card.html.haml View File

@ -5,4 +5,4 @@
= link_to url_for_target(account) do
%span.display_name= display_name(account)
%span.username= "@#{account.acct}"
%p.note= truncate(account.note, length: 150)
%p.note= truncate(strip_tags(account.note), length: 150)

+ 2
- 0
app/views/api/accounts/lookup/index.rabl View File

@ -0,0 +1,2 @@
collection @accounts
extends('api/accounts/show')

+ 1
- 2
app/views/stream_entries/_status.html.haml View File

@ -33,8 +33,7 @@
.counter-btn{ class: favourited_by_me_class(status) }
%i.fa.fa-star
%span.counter-number= status.reblog? ? status.reblog.favourites_count : status.favourites_count
.content
= status.reblog? ? (status.reblog.local? ? linkify(status.reblog) : status.reblog.content.html_safe) : (status.local? ? linkify(status) : status.content.html_safe)
.content= content_for_status(status.reblog? ? status.reblog : status)
- if include_threads
- status.descendants.with_includes.with_counters.each do |status|

+ 4
- 0
config/routes.rb View File

@ -47,6 +47,10 @@ Rails.application.routes.draw do
resources :follows, only: [:create]
resources :accounts, only: [:show] do
collection do
get :lookup, to: 'accounts/lookup#index', as: :lookup
end
member do
get :statuses
get :followers

+ 22
- 0
spec/controllers/api/accounts/lookup_controller_spec.rb View File

@ -0,0 +1,22 @@
require 'rails_helper'
RSpec.describe Api::Accounts::LookupController, type: :controller do
let(:user) { Fabricate(:user, account: Fabricate(:account, username: 'alice')) }
let(:token) { double acceptable?: true, resource_owner_id: user.id }
before do
allow(controller).to receive(:doorkeeper_token) { token }
end
describe 'GET #index' do
before do
Fabricate(:account, username: 'alice')
Fabricate(:account, username: 'bob')
get :index, usernames: 'alice,bob'
end
it 'returns http success' do
expect(response).to have_http_status(:success)
end
end
end

+ 15
- 0
spec/helpers/api/accounts/lookup_helper_spec.rb View File

@ -0,0 +1,15 @@
require 'rails_helper'
# Specs in this file have access to a helper object that includes
# the Api::Accounts::LookupHelper. For example:
#
# describe Api::Accounts::LookupHelper do
# describe "string concat" do
# it "concats two strings with spaces" do
# expect(helper.concat_strings("this","that")).to eq("this that")
# end
# end
# end
RSpec.describe Api::Accounts::LookupHelper, type: :helper do
pending "add some examples to (or delete) #{__FILE__}"
end

Loading…
Cancel
Save