Sha256: 1c1c49f2580fe557d4cc8037471e5ec7badd08ac939c6b6bfd0569559266a3bf

Contents?: true

Size: 1.12 KB

Versions: 7

Compression:

Stored size: 1.12 KB

Contents

# frozen_string_literal: true

require 'forwardable'
require 'cache_method'
require_relative 'internal/config_loader'
require_relative 'clients'

# https://developers.asana.com/docs/workspaces

module Checkoff
  # Query different workspaces of Asana projects
  class Workspaces
    MINUTE = 60
    HOUR = MINUTE * 60
    DAY = 24 * HOUR
    REALLY_LONG_CACHE_TIME = HOUR * 1
    LONG_CACHE_TIME = MINUTE * 15
    SHORT_CACHE_TIME = MINUTE

    def initialize(config: Checkoff::Internal::ConfigLoader.load(:asana),
                   client: Checkoff::Clients.new(config: config).client)
      @config = config
      @client = client
    end

    # Pulls an Asana workspace object
    def workspace(workspace_name)
      client.workspaces.find_all.find do |workspace|
        workspace.name == workspace_name
      end
    end

    def workspace_or_raise(workspace_name)
      workspace = workspace(workspace_name)
      raise "Could not find workspace #{workspace_name}" if workspace.nil?

      workspace
    end

    private

    attr_reader :client

    def default_workspace_gid
      @config.fetch(:default_workspace_gid)
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
checkoff-0.33.2 lib/checkoff/workspaces.rb
checkoff-0.33.1 lib/checkoff/workspaces.rb
checkoff-0.33.0 lib/checkoff/workspaces.rb
checkoff-0.32.0 lib/checkoff/workspaces.rb
checkoff-0.31.0 lib/checkoff/workspaces.rb
checkoff-0.30.0 lib/checkoff/workspaces.rb
checkoff-0.29.4 lib/checkoff/workspaces.rb