mirror of
https://github.com/discourse/discourse.git
synced 2024-11-26 02:40:53 -06:00
5f64fd0a21
Introduce new patterns for direct sql that are safe and fast. MiniSql is not prone to memory bloat that can happen with direct PG usage. It also has an extremely fast materializer and very a convenient API - DB.exec(sql, *params) => runs sql returns row count - DB.query(sql, *params) => runs sql returns usable objects (not a hash) - DB.query_hash(sql, *params) => runs sql returns an array of hashes - DB.query_single(sql, *params) => runs sql and returns a flat one dimensional array - DB.build(sql) => returns a sql builder See more at: https://github.com/discourse/mini_sql
44 lines
1.5 KiB
Ruby
44 lines
1.5 KiB
Ruby
unless Rails.env.test?
|
|
lounge = Category.find_by(id: SiteSetting.lounge_category_id)
|
|
if lounge && lounge.created_at == lounge.updated_at &&
|
|
!lounge.group_ids.include?(Group[:trust_level_3].id)
|
|
|
|
# The category for users with trust level 3 has been created.
|
|
# Add initial permissions and description. They can be changed later.
|
|
|
|
Category.transaction do
|
|
lounge.group_names = ['trust_level_3']
|
|
unless lounge.save
|
|
puts lounge.errors.full_messages
|
|
raise "Failed to set permissions on trust level 3 lounge category!"
|
|
end
|
|
|
|
if lounge.topic_id.nil?
|
|
creator = PostCreator.new(Discourse.system_user,
|
|
raw: I18n.t('vip_category_description'),
|
|
title: I18n.t('category.topic_prefix', category: lounge.name),
|
|
category: lounge.name,
|
|
archetype: Archetype.default,
|
|
skip_validations: true
|
|
)
|
|
post = creator.create
|
|
|
|
unless post && post.id
|
|
puts post.errors.full_messages if post
|
|
puts creator.errors.inspect
|
|
raise "Failed to create description for trust level 3 lounge!"
|
|
end
|
|
|
|
lounge.topic_id = post.topic.id
|
|
unless lounge.save
|
|
puts lounge.errors.full_messages
|
|
puts "Failed to set the lounge description topic!"
|
|
end
|
|
|
|
# Reset topic count because we don't count the description topic
|
|
DB.exec "UPDATE categories SET topic_count = 0 WHERE id = #{lounge.id}"
|
|
end
|
|
end
|
|
end
|
|
end
|