mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 23:06:57 +08:00
df3886d6e5
This commit introduces a new site setting "google_oauth2_hd_groups". If enabled, group information will be fetched from Google during authentication, and stored in the Discourse database. These 'associated groups' can be connected to a Discourse group via the "Membership" tab of the group preferences UI. The majority of the implementation is generic, so we will be able to add support to more authentication methods in the near future. https://meta.discourse.org/t/managing-group-membership-via-authentication/175950
39 lines
1.1 KiB
Ruby
39 lines
1.1 KiB
Ruby
# frozen_string_literal: true
|
|
class AssociatedGroup < ActiveRecord::Base
|
|
has_many :user_associated_groups, dependent: :destroy
|
|
has_many :users, through: :user_associated_groups
|
|
has_many :group_associated_groups, dependent: :destroy
|
|
has_many :groups, through: :group_associated_groups
|
|
|
|
def label
|
|
"#{provider_name}:#{name}"
|
|
end
|
|
|
|
def self.has_provider?
|
|
Discourse.enabled_authenticators.any? { |a| a.provides_groups? }
|
|
end
|
|
|
|
def self.cleanup!
|
|
AssociatedGroup.left_joins(:group_associated_groups, :user_associated_groups)
|
|
.where("group_associated_groups.id IS NULL AND user_associated_groups.id IS NULL")
|
|
.where("last_used < ?", 1.week.ago).delete_all
|
|
end
|
|
end
|
|
|
|
# == Schema Information
|
|
#
|
|
# Table name: associated_groups
|
|
#
|
|
# id :bigint not null, primary key
|
|
# name :string not null
|
|
# provider_name :string not null
|
|
# provider_id :string not null
|
|
# last_used :datetime not null
|
|
# created_at :datetime not null
|
|
# updated_at :datetime not null
|
|
#
|
|
# Indexes
|
|
#
|
|
# associated_groups_provider_id (provider_name,provider_id) UNIQUE
|
|
#
|