Sha256: 2bed839d5c6b2c524b47a40800cfa709631189037304d6e7f826c82990803ea2

Contents?: true

Size: 1.18 KB

Versions: 2

Compression:

Stored size: 1.18 KB

Contents

# frozen_string_literal: true

module Dingtalk
  module Client
    module GroupRobotClient
      # @see https://open-doc.dingtalk.com/microapp/serverapi2/qf2nxq#a-nameytovydamarkdown%E7%B1%BB%E5%9E%8B
      module NotifyFeedcard
        # @param code    [Symbol] set token_code and template_file
        # @param links   [Array<Hash>, Hash]
        def notify_feedcard(code, links)
          token_code = code.to_sym
          token = fetch_token(token_code)
          links = Array.wrap(links).map do |link|
            Hash(link).symbolize_keys.tap do |hash|
              required_keys = %i[title messageURL picURL]
              keys_valid = required_keys.all? { |arg| hash[arg].present? }
              raise ArgumentError, "links requires these keys present: #{required_keys.join(', ')}" unless keys_valid
            end
          end
          body = get_feedcard_body(links)
          notify(token, body)
        end

        private

        # @param links [Array<Hash>]
        # @return [Hash]
        def get_feedcard_body(links)
          {
            msgtype: 'feedCard',
            feedCard: {
              links: links
            }
          }
        end
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
dingtalk-client-0.2.1 lib/dingtalk/client/group_robot_client/notify_feedcard.rb
dingtalk-client-0.2.0 lib/dingtalk/client/group_robot_client/notify_feedcard.rb