slack-ruby-bot-server icon indicating copy to clipboard operation
slack-ruby-bot-server copied to clipboard

Is there anyway to extend the Team model to add my own attributes?

Open Altonymous opened this issue 3 years ago • 11 comments

Referencing this model:

  • https://github.com/slack-ruby/slack-ruby-bot-server/blob/a6786f945ef3926eb155d2611e694357303e820f/lib/slack-ruby-bot-server/models/team/mongoid.rb

Altonymous avatar Oct 30 '22 15:10 Altonymous

I monkey patch these in my projects.

class Team
  include Mongoid::Document
  include Mongoid::Timestamps

  field :whatever, type: String

There should be a cleaner way.

dblock avatar Nov 01 '22 11:11 dblock

I attempted to do that but couldn't get it to work.

Not sure what I did incorrectly, is there a special way I need to tell rails to load the new class other than placing it the models directory of Rails?

Altonymous avatar Nov 01 '22 12:11 Altonymous

I don't think so. Example: https://github.com/dblock/slack-sup/blob/master/slack-sup/models/team.rb

Put up a small app and show how it's not working?

dblock avatar Nov 01 '22 12:11 dblock

I'll try and put something together to demonstrate. (Leaving some notes here to help me in a bit.)

Rails Version: 7.0.4 Ruby Version: 3.1.2p20

Gist: https://gist.github.com/Altonymous/96fb6c07294b86de0ea343ce007a4dbe

Altonymous avatar Nov 02 '22 01:11 Altonymous

Here's an example I put together, hopefully this is what helps.

https://github.com/Altonymous/example_app/blob/main/README.md

Altonymous avatar Nov 02 '22 02:11 Altonymous

Found this StackOverflow, finally. (Google-fu Skill: +1)

https://stackoverflow.com/a/48665268

The "answer" doesn't do it, but the one made by "Carles Jove i Buxeda" seems to work for the example_app I posted. (I haven't updated it yet, in case this isn't a good way to handle it.)

Going to see how it works in my actual application now.

Altonymous avatar Nov 02 '22 02:11 Altonymous

@Altonymous Thanks. I'd like this to be documented, but even more I'd like https://github.com/slack-ruby/slack-bot-on-rails to be updated to the latest version of slack-ruby-bot-server and its libraries. Maybe you can help?

dblock avatar Nov 02 '22 18:11 dblock

Hi all, is there a way to extend the Team model? I'm using Rails 6 btw.

I've tried:

# lib/extensions/slack_ruby_bot_server/team.rb

module Extensions
  module SlackRubyBotServer
    module Team
      extend ActiveSupport::Concern
      
      included do
        def self.color
          'blue'
        end
      end
    end
  end
end
# config/initializers/slack_ruby_bot_server.rb

require 'extensions/slack_ruby_bot_server/team'

SlackRubyBotServer.configure do |config|
  config.oauth_version = :v2
  config.oauth_scope = ENV.fetch('SLACK_OAUTH_SCOPE').split(/\s*,\s*/)
end

Rails.application.config.to_prepare do
  begin
    if ActiveRecord::Base.connection.table_exists?(:teams)
      SlackRubyBotServer::Models::Team.include(Extensions::SlackRubyBotServer::Team)
    end
  rescue ActiveRecord::NoDatabaseError
  end
end

But couldn't find how slack ruby bot server exposes the model's directory.

It says: uninitialized constant SlackRubyBotServer::Models (NameError)

Could you help me?

hcyildirim avatar Mar 15 '23 19:03 hcyildirim

I still just monkey-patch the Team class, e.g. https://github.com/dblock/slack-sup2/blob/main/lib/models/team.rb, open for someone contributing a better mechanism.

dblock avatar Mar 15 '23 23:03 dblock

Where to put this new team model? I did put it on models directory but couldn't make it work on Rails.

hcyildirim avatar Mar 16 '23 10:03 hcyildirim

If you want to upgrade https://github.com/slack-ruby/slack-bot-on-rails and try adding it to that I can take a look.

dblock avatar Mar 16 '23 15:03 dblock