-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathext.py
93 lines (69 loc) · 2.45 KB
/
ext.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
import os
import sys
from threading import Thread
import sublime
import sublime_plugin
import random
from .wasps import utils as ut
import json
actions = [
"Wasps - AI Code Review",
"Wasps - Security Review",
]
class SecurityReviewCommand(sublime_plugin.WindowCommand):
def run(self):
window = self.window
view = self.window.active_view()
if not ut.token_present():
window.status_message(
"Please enter a token or visit https://gitsecure.dev to get a token"
)
return
file_name = view.file_name().replace("\\", "/")
file_name = os.path.basename(file_name)
x, y = view.visible_region().to_tuple()
x = 0
x, y = sorted((x, y))
region = sublime.Region(x, y)
content = view.substr(region)
data = {"content": content, "filename": file_name}
window.status_message(
"Please wait up to a minute while Wasps analyze your code ..."
)
Thread(
target=ut.show_scan_result,
args=(window, "/integration/wasp/scanner/", data),
).start()
class AiCodeReviewCommand(sublime_plugin.WindowCommand):
def run(self):
window = self.window
view = self.window.active_view()
if not ut.token_present():
window.status_message(
"Please enter a token or visit https://gitsecure.dev to get a token"
)
return
file_name = view.file_name().replace("\\", "/")
file_name = os.path.basename(file_name)
x, y = view.sel()[0].to_tuple()
x, y = sorted((x, y))
if x == y:
x = 0
region = sublime.Region(x, y)
content = view.substr(region)
data = {"content": content, "filename": file_name}
window.status_message("Please wait while wasps review your code ...")
Thread(
target=ut.show_review_result,
args=(window, "/integration/wasp/review/", data),
).start()
class ApiKeyCommand(sublime_plugin.WindowCommand):
def run(self):
initial_text = ut.get_token()
if not initial_text:
ut.remove_token()
self.window.show_input_panel(
"Enter your Wasps API Key: ", initial_text, self.on_done, None, None
)
def on_done(self, text: str):
ut.create_token(text)