Sha256: a8c3e31c4f5760083514c7e6d4c9bc800fc44d87d38b962bf927b913a4123531

Contents?: true

Size: 1.65 KB

Versions: 1

Compression:

Stored size: 1.65 KB

Contents

#!/usr/bin/env ruby
require 'imsg/version'
require 'model/chat'

module ImsgHandler
	CHAT_DISPLAY_LIMIT = 15

	def self.display_chats(chats)
		chats.first(CHAT_DISPLAY_LIMIT).map.with_index{ |x, i| "\e[1;32m#{i + 1} \e[1;31m- \e[1;36m#{x.to_s}\e[0m"}.join("\n")
	end

	def self.sort_by_updated(chats)
		chats.sort{ |a, b| b.updated <=> a.updated }
	end

	# Check if a String is a integer number
	def self.is_i?(str)
		str =~ /\A\d+\z/
	end

	# Calls Applescript in order to trigger an iMessage message to a buddy
	# The buddy parameter accepts a String with either a chat number or a Buddy name
	def self.send_message message, buddy, chat
		script_path = File.expand_path('../applescript', __FILE__)
		if (chat)
			puts "\e[0mSending \e[1;32m\"#{message}\"\e[0m to chat with \e[1;36m\"#{chat.to_s}\"\e[0m"
			`osascript #{script_path}/sendToChat.scpt \"#{message}\" \"#{buddy}\"`
		else
			puts "\e[0mSending \e[1;32m\"#{message}\"\e[0m to buddy \e[1;36m\"#{buddy}\"\e[0m"
			`osascript #{script_path}/sendToBuddy.scpt \"#{message}\" \"#{buddy}\"`
		end
	end

	# Shows the chat list along with their participants
def self.ask_for_buddy_with_msg msg
		chats = sort_by_updated(Chat.fetch_all)
		puts "\nTo whom would you like to send your message?"
		puts "(You can choose a number or type a buddy name/email)\n\n"
		puts display_chats(chats) + "\e[1;35m"
		response = gets.chomp
		chat = is_i?(response) ? chats[response.to_i - 1] : nil
		# Gets the last recipient if no chat/user was selected
		no_user = true if (!chat) && (!response || response.length <= 0)
		chat = chats.first if no_user

		response = chat ? chat.chat_number.to_s : response
		
		send_message(msg, response, chat)
	end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
imsg-0.0.9 lib/imsg.rb