module Twitter::Rewriter

A module provides base methods to rewrite usernames, lists, hashtags and URLs.

Public Instance Methods

rewrite(text, options = {}) click to toggle source
# File lib/twitter-text/rewriter.rb, line 28
def rewrite(text, options = {})
  [:hashtags, :urls, :usernames_or_lists].inject(text) do |key|
    options[key] ? send(:"rewrite_#{key}", text, &options[key]) : text
  end
end
rewrite_entities(text, entities) { |entity, chars| ... } click to toggle source
# File lib/twitter-text/rewriter.rb, line 4
def rewrite_entities(text, entities)
  chars = text.to_s.to_char_a

  # sort by start index
  entities = entities.sort_by do |entity|
    indices = entity.respond_to?(:indices) ? entity.indices : entity[:indices]
    indices.first
  end

  result = []
  last_index = entities.inject(0) do |index, entity|
    indices = entity.respond_to?(:indices) ? entity.indices : entity[:indices]
    result << chars[index...indices.first]
    result << yield(entity, chars)
    indices.last
  end
  result << chars[last_index..-1]

  result.flatten.join
end
rewrite_hashtags(text) { |hash, entity| ... } click to toggle source
# File lib/twitter-text/rewriter.rb, line 46
def rewrite_hashtags(text)
  entities = Extractor.extract_hashtags_with_indices(text)
  rewrite_entities(text, entities) do |entity, chars|
    hash = chars[entity[:indices].first]
    yield(hash, entity[:hashtag])
  end
end
rewrite_urls(text) { |entity| ... } click to toggle source
# File lib/twitter-text/rewriter.rb, line 55
def rewrite_urls(text)
  entities = Extractor.extract_urls_with_indices(text, :extract_url_without_protocol => false)
  rewrite_entities(text, entities) do |entity, chars|
    yield(entity[:url])
  end
end
rewrite_usernames_or_lists(text) { |at, entity, list_slug| ... } click to toggle source
# File lib/twitter-text/rewriter.rb, line 35
def rewrite_usernames_or_lists(text)
  entities = Extractor.extract_mentions_or_lists_with_indices(text)
  rewrite_entities(text, entities) do |entity, chars|
    at = chars[entity[:indices].first]
    list_slug = entity[:list_slug]
    list_slug = nil if list_slug.empty?
    yield(at, entity[:screen_name], list_slug)
  end
end