sublime-rana/WakaTime.py

200 lines
5.4 KiB
Python
Raw Normal View History

""" ==========================================================
2013-08-05 05:30:24 +00:00
File: WakaTime.py
Description: Automatic time tracking for Sublime Text 2 and 3.
Maintainer: WakaTi.me <support@wakatime.com>
Website: https://www.wakati.me/
==========================================================="""
2013-07-02 09:21:13 +00:00
2013-08-12 17:55:15 +00:00
__version__ = '1.1.0'
2013-07-02 09:21:13 +00:00
import sublime
import sublime_plugin
2013-07-23 22:18:31 +00:00
import glob
import os
import platform
import sys
2013-07-02 09:21:13 +00:00
import time
import threading
2013-07-02 09:21:13 +00:00
import uuid
2013-07-23 19:11:51 +00:00
from os.path import expanduser, dirname, realpath, isfile, join, exists
2013-07-02 09:21:13 +00:00
# globals
ACTION_FREQUENCY = 5
ST_VERSION = int(sublime.version())
2013-07-02 09:21:13 +00:00
PLUGIN_DIR = dirname(realpath(__file__))
2013-07-20 22:28:38 +00:00
API_CLIENT = '%s/packages/wakatime/wakatime-cli.py' % PLUGIN_DIR
SETTINGS_FILE = 'WakaTime.sublime-settings'
SETTINGS = {}
LAST_ACTION = 0
LAST_FILE = None
2013-07-11 18:27:27 +00:00
BUSY = False
# check if we have SSL support
try:
import ssl
HAS_SSL = True
except ImportError:
#from subprocess import Popen
pass
# import wakatime package
sys.path.insert(0, join(PLUGIN_DIR, 'packages', 'wakatime'))
import wakatime
def setup_settings_file():
""" Convert ~/.wakatime.conf to WakaTime.sublime-settings
"""
global SETTINGS
# To be backwards compatible, rename config file
SETTINGS = sublime.load_settings(SETTINGS_FILE)
api_key = SETTINGS.get('api_key', '')
if not api_key:
api_key = ''
try:
with open(join(expanduser('~'), '.wakatime.conf')) as old_file:
for line in old_file:
line = line.split('=', 1)
if line[0] == 'api_key':
api_key = str(line[1].strip())
try:
os.remove(join(expanduser('~'), '.wakatime.conf'))
except:
pass
except IOError:
pass
SETTINGS.set('api_key', api_key)
sublime.save_settings(SETTINGS_FILE)
def get_api_key():
"""If api key not set, prompt user to enter one then save
to WakaTime.sublime-settings.
"""
global SETTINGS
api_key = SETTINGS.get('api_key', '')
if not api_key:
def got_key(text):
if text:
api_key = str(text)
SETTINGS.set('api_key', api_key)
sublime.save_settings(SETTINGS_FILE)
window = sublime.active_window()
if window:
window.show_input_panel('Enter your WakaTi.me api key:', '', got_key, None, None)
else:
print('Error: Could not prompt for api key because no window found.')
return api_key
def python_binary():
python = 'python'
if platform.system() == 'Windows':
python = 'pythonw'
try:
Popen([python, '--version'])
except:
for path in glob.iglob('/python*'):
if exists(realpath(join(path, 'pythonw.exe'))):
python = realpath(join(path, 'pythonw'))
break
return python
def enough_time_passed(now):
2013-07-17 01:26:52 +00:00
if now - LAST_ACTION > ACTION_FREQUENCY * 60:
return True
return False
def handle_write_action(view):
thread = SendActionThread(view.file_name(), isWrite=True)
thread.start()
def handle_normal_action(view):
thread = SendActionThread(view.file_name())
thread.start()
class SendActionThread(threading.Thread):
def __init__(self, targetFile, isWrite=False, force=False):
threading.Thread.__init__(self)
self.targetFile = targetFile
self.isWrite = isWrite
self.force = force
def run(self):
sublime.set_timeout(self.check, 0)
def check(self):
global LAST_ACTION, LAST_FILE
if self.targetFile:
self.timestamp = time.time()
if self.force or self.isWrite or self.targetFile != LAST_FILE or enough_time_passed(self.timestamp):
LAST_FILE = self.targetFile
LAST_ACTION = self.timestamp
self.send()
def send(self):
api_key = get_api_key()
if not api_key:
return
cmd = [
API_CLIENT,
'--file', self.targetFile,
'--time', str('%f' % self.timestamp),
'--plugin', 'sublime-wakatime/%s' % __version__,
'--key', str(bytes.decode(api_key.encode('utf8'))),
]
if self.isWrite:
cmd.append('--write')
if SETTINGS.get('debug'):
cmd.append('--verbose')
print(cmd)
#if HAS_SSL:
wakatime.main(cmd)
"""else:
cmd.insert(0, python_binary())
if platform.system() == 'Windows':
Popen(cmd, shell=False)
else:
with open(join(expanduser('~'), '.wakatime.log'), 'a') as stderr:
Popen(cmd, stderr=stderr)"""
def plugin_loaded():
setup_settings_file()
# need to call plugin_loaded because only ST3 will auto-call it
if ST_VERSION < 3000:
plugin_loaded()
2013-07-02 09:21:13 +00:00
class WakatimeListener(sublime_plugin.EventListener):
def on_post_save(self, view):
global BUSY
if not BUSY:
BUSY = True
2013-07-17 01:26:52 +00:00
handle_write_action(view)
BUSY = False
2013-07-02 09:21:13 +00:00
def on_activated(self, view):
global BUSY
if not BUSY:
BUSY = True
2013-07-17 01:26:52 +00:00
handle_normal_action(view)
BUSY = False
def on_modified(self, view):
global BUSY
if not BUSY:
BUSY = True
2013-07-17 01:26:52 +00:00
handle_normal_action(view)
BUSY = False