You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

95 lines
3.4 KiB

8 years ago
8 years ago
Web Push Notifications (#3243) * feat: Register push subscription * feat: Notify when mentioned * feat: Boost, favourite, reply, follow, follow request * feat: Notification interaction * feat: Handle change of public key * feat: Unsubscribe if things go wrong * feat: Do not send normal notifications if push is enabled * feat: Focus client if open * refactor: Move push logic to WebPushSubscription * feat: Better title and body * feat: Localize messages * chore: Fix lint errors * feat: Settings * refactor: Lazy load * fix: Check if push settings exist * feat: Device-based preferences * refactor: Simplify logic * refactor: Pull request feedback * refactor: Pull request feedback * refactor: Create /api/web/push_subscriptions endpoint * feat: Spec PushSubscriptionController * refactor: WebPushSubscription => Web::PushSubscription * feat: Spec Web::PushSubscription * feat: Display first media attachment * feat: Support direction * fix: Stuff broken while rebasing * refactor: Integration with session activations * refactor: Cleanup * refactor: Simplify implementation * feat: Set VAPID keys via environment * chore: Comments * fix: Crash when no alerts * fix: Set VAPID keys in testing environment * fix: Follow link * feat: Notification actions * fix: Delete previous subscription * chore: Temporary logs * refactor: Move migration to a later date * fix: Fetch the correct session activation and misc bugs * refactor: Move migration to a later date * fix: Remove follow request (no notifications) * feat: Send administrator contact to push service * feat: Set time-to-live * fix: Do not show sensitive images * fix: Reducer crash in error handling * feat: Add badge * chore: Fix lint error * fix: Checkbox label overlap * fix: Check for payload support * fix: Rename action "type" (crash in latest Chrome) * feat: Action to expand notification * fix: Lint errors * fix: Unescape notification body * fix: Do not allow boosting if the status is hidden * feat: Add VAPID keys to the production sample environment * fix: Strip HTML tags from status * refactor: Better error messages * refactor: Handle browser not implementing the VAPID protocol (Samsung Internet) * fix: Error when target_status is nil * fix: Handle lack of image * fix: Delete reference to invalid subscriptions * feat: Better error handling * fix: Unescape HTML characters after tags are striped * refactor: Simpify code * fix: Modify to work with #4091 * Sort strings alphabetically * i18n: Updated Polish translation it annoys me that it's not fully localized :P * refactor: Use current_session in PushSubscriptionController * fix: Rebase mistake * fix: Set cacheName to mastodon * refactor: Pull request feedback * refactor: Remove logging statements * chore(yarn): Fix conflicts with master * chore(yarn): Copy latest from master * chore(yarn): Readd offline-plugin * refactor: Use save! and update! * refactor: Send notifications async * fix: Allow retry when push fails * fix: Save track for failed pushes * fix: Minify sw.js * fix: Remove account_id from fabricator
6 years ago
8 years ago
8 years ago
8 years ago
7 years ago
7 years ago
8 years ago
  1. Rails.application.configure do
  2. # Settings specified here will take precedence over those in config/application.rb.
  3. # In the development environment your application's code is reloaded on
  4. # every request. This slows down response time but is perfect for development
  5. # since you don't have to restart the web server when you make code changes.
  6. config.cache_classes = false
  7. # Do not eager load code on boot.
  8. config.eager_load = false
  9. # Show full error reports.
  10. config.consider_all_requests_local = true
  11. # Enable/disable caching. By default caching is disabled.
  12. if Rails.root.join('tmp/caching-dev.txt').exist?
  13. config.action_controller.perform_caching = true
  14. config.cache_store = :redis_store, ENV['REDIS_URL'], REDIS_CACHE_PARAMS
  15. config.public_file_server.headers = {
  16. 'Cache-Control' => "public, max-age=#{2.days.seconds.to_i}",
  17. }
  18. else
  19. config.action_controller.perform_caching = false
  20. config.cache_store = :null_store
  21. end
  22. ActiveSupport::Logger.new(STDOUT).tap do |logger|
  23. logger.formatter = config.log_formatter
  24. config.logger = ActiveSupport::TaggedLogging.new(logger)
  25. end
  26. # Generate random VAPID keys
  27. vapid_key = Webpush.generate_key
  28. config.x.vapid_private_key = vapid_key.private_key
  29. config.x.vapid_public_key = vapid_key.public_key
  30. # Don't care if the mailer can't send.
  31. config.action_mailer.raise_delivery_errors = false
  32. config.action_mailer.perform_caching = false
  33. # Print deprecation notices to the Rails logger.
  34. config.active_support.deprecation = :log
  35. # Raise an error on page load if there are pending migrations.
  36. config.active_record.migration_error = :page_load
  37. # Debug mode disables concatenation and preprocessing of assets.
  38. # This option may cause significant delays in view rendering with a large
  39. # number of complex assets.
  40. config.assets.debug = true
  41. # Suppress logger output for asset requests.
  42. config.assets.quiet = true
  43. # Adds additional error checking when serving assets at runtime.
  44. # Checks for improperly declared sprockets dependencies.
  45. # Raises helpful error messages.
  46. config.assets.raise_runtime_errors = true
  47. # Raises error for missing translations
  48. # config.action_view.raise_on_missing_translations = true
  49. # Use an evented file watcher to asynchronously detect changes in source code,
  50. # routes, locales, etc. This feature depends on the listen gem.
  51. # config.file_watcher = ActiveSupport::EventedFileUpdateChecker
  52. config.action_mailer.default_options = { from: 'notifications@localhost' }
  53. # If using a Heroku, Vagrant or generic remote development environment,
  54. # use letter_opener_web, accessible at /letter_opener.
  55. # Otherwise, use letter_opener, which launches a browser window to view sent mail.
  56. config.action_mailer.delivery_method = (ENV['HEROKU'] || ENV['VAGRANT'] || ENV['REMOTE_DEV']) ? :letter_opener_web : :letter_opener
  57. config.after_initialize do
  58. Bullet.enable = true
  59. Bullet.bullet_logger = true
  60. Bullet.rails_logger = false
  61. Bullet.add_whitelist type: :n_plus_one_query, class_name: 'User', association: :account
  62. end
  63. config.x.otp_secret = ENV.fetch('OTP_SECRET', '1fc2b87989afa6351912abeebe31ffc5c476ead9bf8b3d74cbc4a302c7b69a45b40b1bbef3506ddad73e942e15ed5ca4b402bf9a66423626051104f4b5f05109')
  64. end
  65. ActiveRecordQueryTrace.enabled = ENV.fetch('QUERY_TRACE_ENABLED') { false }
  66. module PrivateAddressCheck
  67. def self.private_address?(*)
  68. false
  69. end
  70. end