sublime-rana/WakaTime.py

209 lines
5.8 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-10-27 02:12:29 +00:00
__version__ = '1.4.7'
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
HAS_SSL = False
2013-08-14 09:36:17 +00:00
LOCK = threading.RLock()
# check if we have SSL support
try:
import ssl
import socket
socket.ssl
HAS_SSL = True
except (ImportError, AttributeError):
from subprocess import Popen
if HAS_SSL:
# 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)
2013-08-14 09:36:17 +00:00
def prompt_api_key():
global SETTINGS
2013-08-14 09:36:17 +00:00
if not SETTINGS.get('api_key'):
def got_key(text):
if text:
2013-08-14 09:36:17 +00:00
SETTINGS.set('api_key', str(text))
sublime.save_settings(SETTINGS_FILE)
window = sublime.active_window()
if window:
2013-08-14 09:36:17 +00:00
window.show_input_panel('Enter your WakaTime api key:', '', got_key, None, None)
return True
else:
print('Error: Could not prompt for api key because no window found.')
2013-08-14 09:36:17 +00:00
return False
def python_binary():
if platform.system() == 'Windows':
try:
Popen(['pythonw', '--version'])
return 'pythonw'
except:
for path in glob.iglob('/python*'):
if exists(realpath(join(path, 'pythonw.exe'))):
return realpath(join(path, 'pythonw'))
return None
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):
2013-08-14 09:36:17 +00:00
global LOCK, LAST_FILE, LAST_ACTION
with LOCK:
targetFile = view.file_name()
thread = SendActionThread(targetFile, isWrite=True)
thread.start()
LAST_FILE = targetFile
LAST_ACTION = time.time()
def handle_normal_action(view):
2013-08-14 09:36:17 +00:00
global LOCK, LAST_FILE, LAST_ACTION
with LOCK:
targetFile = view.file_name()
thread = SendActionThread(targetFile)
thread.start()
LAST_FILE = targetFile
LAST_ACTION = time.time()
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
self.debug = SETTINGS.get('debug')
2013-08-14 09:36:17 +00:00
self.api_key = SETTINGS.get('api_key', '')
self.last_file = LAST_FILE
def run(self):
if self.targetFile:
self.timestamp = time.time()
if self.force or self.isWrite or self.targetFile != self.last_file or enough_time_passed(self.timestamp):
self.send()
def send(self):
if not self.api_key:
print('missing api key')
return
ua = 'sublime/%d sublime-wakatime/%s' % (ST_VERSION, __version__)
cmd = [
API_CLIENT,
'--file', self.targetFile,
'--time', str('%f' % self.timestamp),
'--plugin', ua,
'--key', str(bytes.decode(self.api_key.encode('utf8'))),
]
if self.isWrite:
cmd.append('--write')
if self.debug:
cmd.append('--verbose')
if HAS_SSL:
if self.debug:
print(cmd)
code = wakatime.main(cmd)
if code != 0:
print('Error: Response code %d from wakatime package' % code)
else:
python = python_binary()
if python:
cmd.insert(0, python)
if self.debug:
print(cmd)
if platform.system() == 'Windows':
Popen(cmd, shell=False)
else:
with open(join(expanduser('~'), '.wakatime.log'), 'a') as stderr:
Popen(cmd, stderr=stderr)
else:
print('Error: Unable to find python binary.')
def plugin_loaded():
setup_settings_file()
2013-08-14 09:36:17 +00:00
after_loaded()
def after_loaded():
if not prompt_api_key():
sublime.set_timeout(after_loaded, 500)
# 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):
2013-08-14 09:36:17 +00:00
handle_write_action(view)
2013-07-02 09:21:13 +00:00
def on_activated(self, view):
2013-08-14 09:36:17 +00:00
handle_normal_action(view)
def on_modified(self, view):
2013-08-14 09:36:17 +00:00
handle_normal_action(view)