-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtoken_generator.py
45 lines (34 loc) · 1.33 KB
/
token_generator.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
"""
Token Generator
v1.0.3
https://github.com/pxninja/token-generator
Copyright (c) 2024, Samuel Davidson
Released under the MIT License
https://github.com/pxninja/token-generator/blob/LICENSE.md
"""
import sublime
import sublime_plugin
import random
class TokenGeneratorNewTokenCommand(sublime_plugin.TextCommand):
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
self.settings = sublime.load_settings('Token Generator.sublime-settings')
def is_visible(self, context = '', **kwargs):
if context == 'view' and not self.settings.get('show_in_context_menu', default = True):
return False
return True
def run(self, edit, **kwargs):
string_length = self.settings.get('string_length', default = 5)
character_set = self.settings.get('character_set', default = 'abcdef0123456789')
homogeny_okay = not self.settings.get('force_alpha_numeric_inclusion', default = True)
while True:
token = ''.join(random.choice(character_set) for _ in range(string_length))
if homogeny_okay or string_length <= 1:
break
elif any(c.isalpha() for c in token) and any(c.isdigit() for c in token):
break
for region in self.view.sel():
if region.empty():
self.view.insert(edit, region.begin(), token)
else:
self.view.replace(edit, region, token)