Sha256: 8e082391f1f124a34c250afa336bc92aeed31c4d21f6a0c7e4b2126acc14be96

Contents?: true

Size: 1.32 KB

Versions: 6

Compression:

Stored size: 1.32 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,
                   asana_workspace: Asana::Resources::Workspace)
      @config = config
      @client = client
      @asana_workspace = asana_workspace
    end

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

    def default_workspace
      @asana_workspace.find_by_id(client, default_workspace_gid)
    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

6 entries across 6 versions & 1 rubygems

Version Path
checkoff-0.36.1 lib/checkoff/workspaces.rb
checkoff-0.36.0 lib/checkoff/workspaces.rb
checkoff-0.35.1 lib/checkoff/workspaces.rb
checkoff-0.35.0 lib/checkoff/workspaces.rb
checkoff-0.34.1 lib/checkoff/workspaces.rb
checkoff-0.34.0 lib/checkoff/workspaces.rb