* Throw away old system * Add new system * Add new example files * Replace all calls * add the most important docs * Add Specs * rename disable_ssl_requirement to require_ssl * cloudfiles isn't used/called in our code * since community_spotlight.list is only used as enable flag replace it with such one and remove all legacy and irelevant codepaths around it * die if session secret is unset and on heroku * First basic infrastructure for version information
42 lines
1.5 KiB
Ruby
42 lines
1.5 KiB
Ruby
# Copyright (c) 2010-2011, Diaspora Inc. This file is
|
|
# licensed under the Affero General Public License version 3 or later. See
|
|
# the COPYRIGHT file.
|
|
|
|
# check what database you have
|
|
def postgres?
|
|
@using_postgres ||= defined?(ActiveRecord::ConnectionAdapters::PostgreSQLAdapter) && ActiveRecord::Base.connection.is_a?(ActiveRecord::ConnectionAdapters::PostgreSQLAdapter)
|
|
end
|
|
|
|
def sqlite?
|
|
@using_sqlite ||= defined?(ActiveRecord::ConnectionAdapters::SQLite3Adapter) && ActiveRecord::Base.connection.class == ActiveRecord::ConnectionAdapters::SQLite3Adapter
|
|
end
|
|
|
|
# Load the rails application
|
|
require File.expand_path('../application', __FILE__)
|
|
require Rails.root.join("lib", "exceptions")
|
|
|
|
# Load configuration system early
|
|
require Rails.root.join("config", "load_config")
|
|
|
|
Haml::Template.options[:format] = :html5
|
|
Haml::Template.options[:escape_html] = true
|
|
|
|
# Blacklist of usernames
|
|
USERNAME_BLACKLIST = ['admin', 'administrator', 'hostmaster', 'info', 'postmaster', 'root', 'ssladmin',
|
|
'ssladministrator', 'sslwebmaster', 'sysadmin', 'webmaster', 'support', 'contact', 'example_user1dsioaioedfhgoiesajdigtoearogjaidofgjo']
|
|
|
|
# Initialize the rails application
|
|
Diaspora::Application.initialize!
|
|
require Rails.root.join('lib', 'federation_logger')
|
|
|
|
# allow token auth only for posting activitystream photos
|
|
module Devise
|
|
module Strategies
|
|
class TokenAuthenticatable < Authenticatable
|
|
private
|
|
def valid_params_request?
|
|
params[:controller] == "activity_streams/photos" && params[:action] == "create"
|
|
end
|
|
end
|
|
end
|
|
end
|