51 lines
2.2 KiB
Ruby
51 lines
2.2 KiB
Ruby
# Copyright 2010 Diaspora Inc.
|
|
#
|
|
# This file is part of Diaspora.
|
|
#
|
|
# Diaspora is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU Affero General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# Diaspora is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU Affero General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU Affero General Public License
|
|
# along with Diaspora. If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
|
|
|
|
|
|
# This file should contain all the record creation needed to seed the database with its default values.
|
|
# The data can then be loaded with the rake db:seed (or created alongside the db with db:setup).
|
|
#
|
|
# Examples:
|
|
#
|
|
# cities = City.create([{ :name => 'Chicago' }, { :name => 'Copenhagen' }])
|
|
# Mayor.create(:name => 'Daley', :city => citie
|
|
|
|
require 'config/environment'
|
|
|
|
def create
|
|
config = YAML.load_file(File.dirname(__FILE__) + '/../../config/deploy_config.yml')
|
|
backer_info = config['servers']['backer']
|
|
|
|
backer_number = YAML.load_file(Rails.root.join('config','backer_number.yml'))[:seed_number].to_i
|
|
# Create seed user
|
|
username = backer_info[backer_number]['username'].gsub(/ /,'').downcase
|
|
user = User.create( :email => "#{username}@#{username}.joindiaspora.com",
|
|
:username => username,
|
|
:password => "#{username+backer_info[backer_number]['pin'].to_s}",
|
|
:person => Person.new(
|
|
:email => "#{username}@#{username}.joindiaspora.com",
|
|
:profile => Profile.new( :first_name => backer_info[backer_number]['given_name'], :last_name => backer_info[backer_number]['family_name'],
|
|
:image_url => "http://#{username}.joindiaspora.com/images/user/#{username}.jpg"),
|
|
:url=> "http://#{username}.joindiaspora.com/")
|
|
)
|
|
user.person.save
|
|
|
|
user.aspect(:name => "Presidents")
|
|
end
|
|
|