docbrown/db/seeds.rb
Mac Siri 94601cdd87 Enrich database seeds (#566)
* Update Faker gem to master

* Randomize user profile images

* Enrich seeds.rb
2018-07-11 17:21:50 -04:00

135 lines
5.8 KiB
Ruby

p "1/7 Creating Organizations"
3.times do
Organization.create!(
name: Faker::SiliconValley.company,
summary: Faker::Company.bs,
remote_profile_image_url: logo = Faker::Company.logo,
nav_image: logo,
url: Faker::Internet.url,
slug: "org#{rand(10000)}",
github_username: "org#{rand(10000)}",
twitter_username: "org#{rand(10000)}",
bg_color_hex: Faker::Color.hex_color,
text_color_hex: Faker::Color.hex_color,
)
end
##############################################################################
p "2/7 Creating Users"
roles = %i(level_1_member level_2_member level_3_member level_4_member
workshop_pass)
40.times do |i|
user = User.create!(
name: name = Faker::Name.unique.name,
summary: Faker::Lorem.paragraph_by_chars(199, false),
remote_profile_image_url: Faker::Avatar.image(nil, "300x300", "png", "set2", "bg2"),
website_url: Faker::Internet.url,
twitter_username: Faker::Internet.username(name),
email_comment_notifications: false,
email_follower_notifications: false,
email: Faker::Internet.email(name, "+"),
confirmed_at: Time.now,
password: "password",
)
user.add_role(roles[rand(0..5)]) # includes chance of having no role
Identity.create!(
provider: "twitter",
uid: i.to_s,
token: i.to_s,
secret: i.to_s,
user: user,
)
end
##############################################################################
p "3/7 Creating Tags"
tags = %w(beginners career computerscience git go
java javascript linux productivity python security webdev)
tags.each do |tag_name|
Tag.create!(
name: tag_name,
bg_color_hex: Faker::Color.hex_color,
text_color_hex: Faker::Color.hex_color,
supported: true,
)
end
##############################################################################
p "4/7 Creating Articles"
80.times do |i|
tags = []
tags << "discuss" if (i % 3).zero?
tags.concat Tag.order("RANDOM()").select("name").first(3).map(&:name)
markdown = <<~MARKDOWN
---
title: #{Faker::Book.unique.title}
published: true
cover_image: #{Faker::Company.logo}
tags: #{tags.join(', ')}
---
#{Faker::Hipster.paragraph(2)}
#{Faker::Markdown.random}
#{Faker::Hipster.paragraph(2)}
MARKDOWN
Article.create!(
body_markdown: markdown,
featured: true,
show_comments: true,
user_id: User.order("RANDOM()").first.id,
)
end
##############################################################################
p "5/7 Creating Comments"
120.times do
attributes = {
body_markdown: Faker::Hipster.paragraph(1),
user_id: User.order("RANDOM()").first.id,
commentable_id: Article.where("id > ?", 30).order("RANDOM()").first.id,
commentable_type: "Article",
}
Comment.create!(attributes)
end
##############################################################################
p "6/7 Creating Podcasts"
podcast_objects = [
{ "title" => "CodingBlocks", "description" => nil, "feed_url" => "http://feeds.podtrac.com/c8yBGHRafqhz", "image" => Faker::Avatar.image, "slug" => "codingblocks", "twitter_username" => "CodingBlocks", "website_url" => "http://codingblocks.net", "main_color_hex" => "111111", "overcast_url" => "https://overcast.fm/itunes769189585/coding-blocks-software-and-web-programming-security-best-practices-microsoft-net", "android_url" => "http://subscribeonandroid.com/feeds.podtrac.com/c8yBGHRafqhz", image: Rack::Test::UploadedFile.new(File.join(Rails.root, "spec", "support", "fixtures", "images", "image1.jpeg"), "image/jpeg") },
{ "title" => "Talk Python", "description" => nil, "feed_url" => "https://talkpython.fm/episodes/rss", "image" => Faker::Avatar.image, "slug" => "talkpython", "twitter_username" => "TalkPython", "website_url" => "https://talkpython.fm", "main_color_hex" => "181a1c", "overcast_url" => "https://overcast.fm/itunes979020229/talk-python-to-me-python-conversations-for-passionate-developers", "android_url" => "https://subscribeonandroid.com/talkpython.fm/episodes/rss", image: Rack::Test::UploadedFile.new(File.join(Rails.root, "spec", "support", "fixtures", "images", "image1.jpeg"), "image/jpeg") },
{ "title" => "Developer on Fire", "description" => "", "feed_url" => "http://developeronfire.com/rss.xml", "itunes_url" => "https://itunes.apple.com/us/podcast/developer-on-fire/id1006105326", "image" => Faker::Avatar.image, "slug" => "developeronfire", "twitter_username" => "raelyard", "website_url" => "http://developeronfire.com", "main_color_hex" => "", "overcast_url" => "https://overcast.fm/itunes1006105326/developer-on-fire", "android_url" => "http://subscribeonandroid.com/developeronfire.com/rss.xml", image: Rack::Test::UploadedFile.new(File.join(Rails.root, "spec", "support", "fixtures", "images", "image1.jpeg"), "image/jpeg") },
{ "title" => "Building Programmers", "description" => "", "feed_url" => "https://building.fireside.fm/rss", "itunes_url" => "https://itunes.apple.com/us/podcast/building-programmers/id1149043456", "image" => Faker::Avatar.image, "slug" => "buildingprogrammers", "twitter_username" => "run_kmc", "website_url" => "https://building.fireside.fm", "main_color_hex" => "140837", "overcast_url" => "https://overcast.fm/itunes1149043456/building-programmers", "android_url" => "https://subscribeonandroid.com/building.fireside.fm/rss", image: Rack::Test::UploadedFile.new(File.join(Rails.root, "spec", "support", "fixtures", "images", "image1.jpeg"), "image/jpeg") },
]
podcast_objects.each do |attributes|
podcast = Podcast.create!(attributes)
end
##############################################################################
p "7/7 Creating Broadcasts"
Broadcast.create!(
title: "Welcome Notification",
processed_html: "Welcome to dev.to! Start by introducing yourself in <a href='/welcome' data-no-instant>the welcome thread</a>.",
type_of: "Onboarding",
sent: true,
)
##############################################################################