-
-
Notifications
You must be signed in to change notification settings - Fork 117
Expand file tree
/
Copy pathtldr.py
More file actions
executable file
路916 lines (778 loc) 路 29.9 KB
/
Copy pathtldr.py
File metadata and controls
executable file
路916 lines (778 loc) 路 29.9 KB
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
#!/usr/bin/env python3
# PYTHON_ARGCOMPLETE_OK
import sys
import os
import re
from argparse import ArgumentParser
from pathlib import Path
from zipfile import ZipFile
from datetime import datetime
from io import BytesIO
from typing import List, Optional, Tuple, Union
from urllib.parse import quote
from urllib.request import urlopen, Request
from urllib.error import HTTPError, URLError
from termcolor import colored
import ssl
import shtab
import shutil
__version__ = "3.4.4"
__client_specification__ = "2.3"
VERBOSE = int(os.environ.get('TLDR_VERBOSE', '0')) > 0
def debug(message: str) -> None:
if VERBOSE:
print(f"[tldr-debug] {message}", file=sys.stderr)
REQUEST_HEADERS = {'User-Agent': 'tldr-python-client'}
PAGES_SOURCE_LOCATION = os.environ.get(
'TLDR_PAGES_SOURCE_LOCATION',
'https://raw.githubusercontent.com/tldr-pages/tldr/main/pages'
).rstrip('/')
DOWNLOAD_CACHE_LOCATION = os.environ.get(
'TLDR_DOWNLOAD_CACHE_LOCATION',
'https://github.com/tldr-pages/tldr/releases/latest/download/tldr.zip'
)
USE_NETWORK = int(os.environ.get('TLDR_NETWORK_ENABLED', '1')) > 0
USE_CACHE = int(os.environ.get('TLDR_CACHE_ENABLED', '1')) > 0
MAX_CACHE_AGE = int(os.environ.get('TLDR_CACHE_MAX_AGE', 24*7))
CAFILE = None if os.environ.get('TLDR_CERT', None) is None else \
Path(os.environ.get('TLDR_CERT')).expanduser()
URLOPEN_CONTEXT = None
if int(os.environ.get('TLDR_ALLOW_INSECURE', '0')) == 1:
URLOPEN_CONTEXT = ssl.create_default_context()
URLOPEN_CONTEXT.check_hostname = False
URLOPEN_CONTEXT.verify_mode = ssl.CERT_NONE
elif CAFILE:
URLOPEN_CONTEXT = ssl.create_default_context(cafile=CAFILE)
OS_DIRECTORIES = {
"android": "android",
"darwin": "osx",
"freebsd": "freebsd",
"linux": "linux",
"macos": "osx",
"netbsd": "netbsd",
"openbsd": "openbsd",
"osx": "osx",
"sunos": "sunos",
"win32": "windows",
"windows": "windows"
}
class CacheNotExist(Exception):
pass
def get_language_code(language: str) -> str:
language = language.split('.')[0]
if language in ['pt_PT', 'pt_BR', 'zh_TW']:
return language
elif language == "pt":
return "pt_PT"
return language.split('_')[0]
def get_default_language() -> str:
default_lang = get_language_code(
os.environ.get(
'LANG',
'C'
)
)
if default_lang == 'C' or default_lang == 'POSIX':
default_lang = None
return default_lang
def get_cache_dir() -> Path:
if os.environ.get('XDG_CACHE_HOME', False):
return Path(os.environ.get('XDG_CACHE_HOME')) / 'tldr'
if os.environ.get('HOME', False):
return Path(os.environ.get('HOME')) / '.cache' / 'tldr'
return Path.home() / '.cache' / 'tldr'
def get_system_cache_dir() -> Path:
for entry in os.environ.get('XDG_DATA_DIRS', '').split(':'):
if not entry:
continue
candidate = Path(entry) / 'tldr'
if candidate.is_dir():
return candidate
return Path('/usr/share/tldr')
def get_cache_file_path(command: str, platform: str, language: str, system_cache: bool = False) -> Path:
pages_dir = "pages"
if language and language != 'en':
pages_dir += "." + language
if system_cache:
return get_system_cache_dir() / pages_dir / platform / f"{command}.md"
return get_cache_dir() / pages_dir / platform / f"{command}.md"
def load_page_from_cache(command: str, platform: str, language: str, system_cache: bool = False) -> Optional[str]:
try:
with get_cache_file_path(
command,
platform,
language,
system_cache
).open('rb') as cache_file:
cache_file_contents = cache_file.read()
return cache_file_contents
except Exception:
pass
def store_page_to_cache(
page: str,
command: str,
platform: str,
language: str
) -> Optional[str]:
try:
cache_file_path = get_cache_file_path(command, platform, language)
cache_file_path.parent.mkdir(parents=True, exist_ok=True)
with cache_file_path.open("wb") as cache_file:
cache_file.write(page)
except Exception:
pass
def have_recent_cache(command: str, platform: str, language: str) -> bool:
try:
cache_file_path = get_cache_file_path(command, platform, language)
last_modified = datetime.fromtimestamp(cache_file_path.stat().st_mtime)
hours_passed = (datetime.now() - last_modified).total_seconds() / 3600
return hours_passed <= MAX_CACHE_AGE
except Exception:
return False
def get_page_url(command: str, platform: str, remote: str, language: str) -> str:
if remote is None:
remote = PAGES_SOURCE_LOCATION
if language is None or language == 'en':
language = ''
else:
language = '.' + language
return remote + language + "/" + platform + "/" + quote(command) + ".md"
def get_page_for_platform(
command: str,
platform: str,
remote: str,
language: str,
only_use_cache: bool = False,
system_cache: bool = False
) -> str:
debug(
f"Trying command='{command}' platform='{platform}' language='{language}' "
f"only_use_cache={only_use_cache} system_cache={system_cache}"
)
data_downloaded = False
if USE_CACHE and system_cache and get_cache_file_path(command, platform, language, system_cache).is_file():
debug(
f"Loading page from system cache: "
f"{get_cache_file_path(command, platform, language, system_cache)}"
)
data = load_page_from_cache(command, platform, language, system_cache)
elif USE_CACHE and have_recent_cache(command, platform, language):
debug(
f"Loading page from cache: "
f"{get_cache_file_path(command, platform, language)}"
)
data = load_page_from_cache(command, platform, language)
elif only_use_cache:
debug(
f"Cache not found for command='{command}' "
f"platform='{platform}' language='{language}' system_cache={system_cache}"
)
raise CacheNotExist("Cache for {} in {} not Found".format(
command,
platform,
))
else:
page_url = get_page_url(command, platform, remote, language)
debug(f"Fetching page from URL: {page_url}")
try:
data = urlopen(
Request(page_url, headers=REQUEST_HEADERS),
timeout=10,
context=URLOPEN_CONTEXT
).read()
data_downloaded = True
except Exception as err:
debug(f"Fetch failed for {page_url}: {type(err).__name__}: {err}")
if not USE_CACHE:
raise
debug(
f"Falling back to cache: "
f"{get_cache_file_path(command, platform, language)}"
)
data = load_page_from_cache(command, platform, language)
if data is None:
debug(
f"Fallback cache not found for command='{command}' "
f"platform='{platform}' language='{language}'"
)
raise
if data_downloaded and USE_CACHE:
debug(
f"Storing downloaded page to cache: "
f"{get_cache_file_path(command, platform, language)}"
)
store_page_to_cache(data, command, platform, language)
return data.splitlines()
def update_page_for_platform(
command: str,
platform: str,
remote: str,
language: str
) -> None:
page_url = get_page_url(platform, command, remote, language)
data = urlopen(
Request(page_url, headers=REQUEST_HEADERS),
context=URLOPEN_CONTEXT
).read()
store_page_to_cache(data, command, platform, language)
def get_platform() -> str:
for key in OS_DIRECTORIES:
if sys.platform.startswith(key):
return OS_DIRECTORIES[key]
return 'linux'
def get_platform_list() -> List[str]:
platforms = ['common'] + list(set(OS_DIRECTORIES.values()))
current_platform = get_platform()
platforms.remove(current_platform)
platforms.insert(0, current_platform)
return platforms
def get_language_list() -> List[str]:
tldr_language = get_language_code(os.environ.get('TLDR_LANGUAGE', ''))
languages = os.environ.get('LANGUAGE', '').split(':')
languages = list(map(
get_language_code,
filter(lambda x: not (x == 'C' or x == 'POSIX' or x == ''), languages)
))
default_lang = get_default_language()
if default_lang is None:
languages = []
elif default_lang not in languages:
languages.append(default_lang)
if tldr_language:
# remove tldr_language if it already exists to avoid double entry
try:
languages.remove(tldr_language)
except ValueError:
pass
languages.insert(0, tldr_language)
if 'en' not in languages:
languages.append('en')
return languages
def get_page_for_every_platform(
command: str,
remote: Optional[str] = None,
platforms: Optional[List[str]] = None,
languages: Optional[List[str]] = None
) -> Union[List[Tuple[str, str]], bool]:
"""Gives a list of tuples result-platform ordered by priority."""
if platforms is None:
platforms = get_platform_list()
else:
# When platform is explicitly specified, ensure 'common' is included as fallback
if 'common' not in platforms and len(platforms) > 0:
platforms = platforms + ['common']
if languages is None:
languages = get_language_list()
debug(f"Searching command='{command}' platforms={platforms} languages={languages}")
# only use cache
if USE_CACHE:
result = list()
for platform in platforms:
for language in languages:
if platform is None:
continue
try:
result.append(
(get_page_for_platform(
command,
platform,
remote,
language,
only_use_cache=True,
), platform)
)
break # Don't want to look for the same page in other langs
except CacheNotExist:
continue
if result: # Return if smth was found
return result
# Cache miss, search system cache.
result = list()
for platform in platforms:
for language in languages:
if platform is None:
continue
try:
result.append(
(get_page_for_platform(
command,
platform,
remote,
language,
only_use_cache=True,
system_cache=True
), platform)
)
break # Don't want to look for the same page in other langs
except CacheNotExist:
continue
if result: # Return if smth was found
return result
# Know here that we don't have the info in cache
result = list()
error = None
for platform in platforms:
for language in languages:
if platform is None:
continue
try:
result.append(
(
get_page_for_platform(
command,
platform,
remote,
language
),
platform
)
)
break
except HTTPError as err:
if err.code != 404:
# Store error for later, only raise if we find no results at all
error = err
except URLError as err:
if not PAGES_SOURCE_LOCATION.startswith('file://'):
# Store error for later, only raise if we find no results at all
error = err
if result: # Return if smth was found
return result
# Reraise the error if we couldn't get the pages for any platform
if error is not None:
# Note that only the most recent error will be stored and raised
raise error
# Otherwise, we got no results nor errors, implies the documentation doesn't exist
return False
def get_page(
command: str,
remote: Optional[str] = None,
platforms: Optional[List[str]] = None,
languages: Optional[List[str]] = None
) -> Union[str, bool]:
if platforms is None:
platforms = get_platform_list()
if languages is None:
languages = get_language_list()
# only use cache
if USE_CACHE:
for platform in platforms:
for language in languages:
if platform is None:
continue
try:
return get_page_for_platform(
command,
platform,
remote,
language,
only_use_cache=True,
)
except CacheNotExist:
continue
for platform in platforms:
for language in languages:
if platform is None:
continue
try:
return get_page_for_platform(command, platform, remote, language)
except HTTPError as err:
if err.code != 404:
raise
except URLError:
if not PAGES_SOURCE_LOCATION.startswith('file://'):
raise
return False
DEFAULT_COLORS = {
'name': 'bold',
'description': '',
'example': 'green',
'command': 'red',
'parameter': ''
}
# See more details in the README:
# https://github.com/tldr-pages/tldr-python-client#colors
ACCEPTED_COLORS = [
'blue', 'green', 'yellow', 'cyan', 'magenta', 'white', 'grey', 'red'
]
ACCEPTED_COLOR_BACKGROUNDS = [
'on_blue', 'on_cyan', 'on_magenta', 'on_white',
'on_grey', 'on_yellow', 'on_red', 'on_green'
]
ACCEPTED_COLOR_ATTRS = [
'reverse', 'blink', 'dark', 'concealed', 'underline', 'bold'
]
LEADING_SPACES_NUM = 2
EXAMPLE_SPLIT_REGEX = re.compile(r'(?P<example>`.+?`)')
EXAMPLE_REGEX = re.compile(r'(?:`)(?P<example>.+?)(?:`)')
COMMAND_SPLIT_REGEX = re.compile(r'(?P<param>{{.+?}*}})')
PARAM_REGEX = re.compile(r'(?:{{)(?P<param>.+?)(?:}})')
def get_commands(platforms: Optional[List[str]] = None,
language: Optional[str] = None) -> List[str]:
if platforms is None:
platforms = get_platform_list()
if language:
languages = [get_language_code(language[0])]
else:
languages = get_language_list()
commands = []
if get_cache_dir().exists():
for platform in platforms:
for language in languages:
pages_dir = f'pages.{language}' if language != 'en' else 'pages'
path = get_cache_dir() / pages_dir / platform
if not path.exists():
continue
commands += [f"{file.stem}"
for file in path.iterdir()
if file.suffix == '.md']
return commands
def colors_of(key: str) -> Tuple[str, str, List[str]]:
env_key = 'TLDR_COLOR_%s' % key.upper()
values = os.environ.get(env_key, DEFAULT_COLORS[key]).strip().split()
color = None
on_color = None
attrs = []
for value in values:
if value in ACCEPTED_COLORS:
color = value
elif value in ACCEPTED_COLOR_BACKGROUNDS:
on_color = value
elif value in ACCEPTED_COLOR_ATTRS:
attrs.append(value)
return (color, on_color, attrs)
def output(page: str, display_option_length: str, plain: bool = False) -> None:
def emphasise_example(x: str) -> str:
# Use ANSI escapes to enable italics at the start and disable at the end
# Also use the color yellow to differentiate from the default green
return "\x1B[3m" + colored(x.group('example'), 'yellow') + "\x1B[23m"
if not plain:
print()
for line in page:
line = line.rstrip().decode('utf-8')
if plain:
print(line)
continue
elif len(line) == 0:
continue
# Handle the command name
elif line[0] == '#':
line = ' ' * LEADING_SPACES_NUM + \
colored(line.replace('# ', ''), *colors_of('name')) + '\n'
sys.stdout.buffer.write(line.encode('utf-8'))
# Handle the command description
elif line[0] == '>':
line = ' ' * (LEADING_SPACES_NUM - 1) + \
colored(
line.replace('>', '').replace('<', ''),
*colors_of('description')
)
sys.stdout.buffer.write(line.encode('utf-8'))
# Handle an example description
elif line[0] == '-':
# Stylize text within backticks using yellow italics
if '`' in line:
elements = ['\n', ' ' * LEADING_SPACES_NUM]
for item in EXAMPLE_SPLIT_REGEX.split(line):
item, replaced = EXAMPLE_REGEX.subn(emphasise_example, item)
if not replaced:
item = colored(item, *colors_of('example'))
elements.append(item)
line = ''.join(elements)
# Otherwise, use the same colour for the whole line
else:
line = '\n' + ' ' * LEADING_SPACES_NUM + \
colored(line, *colors_of('example'))
sys.stdout.buffer.write(line.encode('utf-8'))
# Handle an example command
elif line[0] == '`':
line = line[1:-1] # Remove backticks for parsing
# Handle escaped placeholders first
line = line.replace(r'\{\{', '__ESCAPED_OPEN__')
line = line.replace(r'\}\}', '__ESCAPED_CLOSE__')
# Extract long or short options from placeholders
if display_option_length == "short":
line = re.sub(r'{{\[([^|]+)\|[^|]+?\]}}', r'\1', line)
elif display_option_length == "long":
line = re.sub(r'{{\[[^|]+\|([^|]+?)\]}}', r'\1', line)
elements = [' ' * 2 * LEADING_SPACES_NUM]
for item in COMMAND_SPLIT_REGEX.split(line):
item, replaced = PARAM_REGEX.subn(
lambda x: colored(x.group('param'), *colors_of('parameter')),
item)
if not replaced:
item = colored(item, *colors_of('command'))
elements.append(item)
line = ''.join(elements)
# Restore escaped placeholders
line = line.replace('__ESCAPED_OPEN__', '{{')
line = line.replace('__ESCAPED_CLOSE__', '}}')
sys.stdout.buffer.write(line.encode('utf-8'))
print()
print()
def update_cache(language: Optional[List[str]] = None) -> None:
languages = get_language_list()
if language and language[0] not in languages:
languages.append(language[0])
for language in languages:
try:
cache_location = f"{DOWNLOAD_CACHE_LOCATION[:-4]}-pages.{language}.zip"
req = urlopen(Request(
cache_location,
headers=REQUEST_HEADERS
), context=URLOPEN_CONTEXT)
zipfile = ZipFile(BytesIO(req.read()))
pattern = re.compile(r"(.+)/(.+)\.md")
cached = 0
for entry in zipfile.namelist():
match = pattern.match(entry)
if match:
store_page_to_cache(
zipfile.read(entry),
match.group(2),
match.group(1),
language
)
cached += 1
print(
"Updated cache for language "
f"{language}: {cached} entries"
)
except Exception as err:
debug(
f"Failed to update cache for language '{language}' "
f"from {cache_location}: {type(err).__name__}: {err}"
)
print(
"Error: Unable to update cache for language "
f"{language} from {cache_location}"
)
def clear_cache(language: Optional[List[str]] = None) -> None:
languages = get_language_list()
if language and language[0] not in languages:
languages.append(language[0])
for language in languages:
pages_dir = f'pages.{language}' if language != 'en' else 'pages'
cache_dir = get_cache_dir() / pages_dir
if cache_dir.exists() and cache_dir.is_dir():
try:
shutil.rmtree(cache_dir)
print(f"Cleared cache for language {language}")
except Exception as e:
print(f"Error: Unable to delete cache directory {cache_dir}: {e}")
else:
print(f"No cache directory found for language {language}")
def create_parser() -> ArgumentParser:
parser = ArgumentParser(
prog="tldr",
usage="tldr command [options]",
description="Python command line client for tldr"
)
parser.add_argument(
'-v', '--version',
action='version',
version='%(prog)s {} (Client Specification {})'.format(
__version__,
__client_specification__
)
)
parser.add_argument(
'--verbose', '--debug',
default=False,
action='store_true',
help='Show detailed troubleshooting output on stderr'
)
parser.add_argument("--search",
metavar='"KEYWORDS"',
type=str,
help="Search for a specific command from a query")
parser.add_argument('-u', '--update', '--update_cache',
action='store_true',
help="Update the local cache of pages and exit")
parser.add_argument('-k', '--clear-cache',
action='store_true',
help="Delete the local cache of pages and exit")
all_platforms = sorted(set(OS_DIRECTORIES.values())) + ['common']
platforms_str = "[" + ", ".join(all_platforms) + "]"
parser.add_argument(
'-p', '--platform',
nargs=1,
default=None,
type=str,
choices=all_platforms,
metavar='PLATFORM',
help=f"Override the operating system {platforms_str}"
)
parser.add_argument('-l', '--list',
default=False,
action='store_true',
help="List all available commands for operating system")
parser.add_argument('-s', '--source',
default=PAGES_SOURCE_LOCATION,
type=str,
help="Override the default page source")
parser.add_argument('-c', '--color',
default=None,
action='store_const',
const=False,
help="Override color stripping")
parser.add_argument('-r', '--render',
default=False,
action='store_true',
help='Render local markdown files'
)
parser.add_argument('-L', '--language',
nargs=1,
default=None,
type=str,
help='Override the default language')
parser.add_argument('-m', '--markdown',
default=False,
action='store_true',
help='Just print the plain page file.')
parser.add_argument('--short-options',
default=False,
action="store_true",
help='Display shortform options over longform')
parser.add_argument('--long-options',
default=False,
action="store_true",
help='Display longform options over shortform')
parser.add_argument(
'command', type=str, nargs='*', help="command to lookup", metavar='command'
).complete = {"bash": "shtab_tldr_cmd_list", "zsh": "shtab_tldr_cmd_list"}
shtab.add_argument_to(parser, preamble={
'bash': r'''shtab_tldr_cmd_list(){{
compgen -W "$("{py}" -m tldr --list)" -- "$1"
}}'''.format(py=sys.executable),
'zsh': r'''shtab_tldr_cmd_list(){{
_describe 'command' "($("{py}" -m tldr --list))"
}}'''.format(py=sys.executable)
})
return parser
def main() -> None:
parser = create_parser()
options = parser.parse_args()
global VERBOSE
VERBOSE = options.verbose or VERBOSE
if VERBOSE:
debug("Verbose output enabled")
debug(f"cache_enabled={USE_CACHE}, network_enabled={USE_NETWORK}, max_cache_age={MAX_CACHE_AGE}")
debug(f"cache_dir={get_cache_dir()}")
debug(f"source={options.source}")
debug(f"platform_option={options.platform}")
debug(f"language_option={options.language}")
if sys.platform == "win32":
import colorama
colorama.init(strip=options.color)
if options.platform is None:
platform_env = os.environ.get('TLDR_PLATFORM', '').strip().lower()
if platform_env in OS_DIRECTORIES:
options.platform = [platform_env]
elif platform_env:
warning_msg = (
f"Warning: '{platform_env}' is not a supported TLDR_PLATFORM environment value."
"\nFalling back to auto-detection."
)
print(colored(warning_msg, 'yellow'))
display_option_length = "long"
if os.environ.get('TLDR_OPTIONS') == "short":
display_option_length = "short"
elif os.environ.get('TLDR_OPTIONS') == "long":
display_option_length = "long"
elif os.environ.get('TLDR_OPTIONS') == "both":
display_option_length = "both"
if options.short_options:
display_option_length = "short"
if options.long_options:
display_option_length = "long"
if options.short_options and options.long_options:
display_option_length = "both"
if options.color is False:
os.environ["FORCE_COLOR"] = "true"
if options.update:
update_cache(language=options.language)
elif len(sys.argv) == 1:
parser.print_help(sys.stderr)
sys.exit(1)
if options.clear_cache:
clear_cache(language=options.language)
return
elif len(sys.argv) == 1:
parser.print_help(sys.stderr)
sys.exit(1)
if options.list:
print('\n'.join(get_commands(options.platform, options.language)))
elif options.render:
for command in options.command:
file_path = Path(command)
if file_path.exists():
with file_path.open(encoding='utf-8') as open_file:
output(open_file.read().encode('utf-8').splitlines(),
display_option_length,
plain=options.markdown)
elif options.search:
search_term = options.search.lower()
commands = get_commands(options.platform, options.language)
if not commands:
print("Update cache, no commands to check from.")
return
similar_commands = []
for command in commands:
if search_term in command.lower():
similar_commands.append(command)
if similar_commands:
print("Similar commands found:")
print('\n'.join(similar_commands))
return
else:
print("No commands matched your search term.")
sys.exit(1)
elif not options.command == []:
try:
command = '-'.join(options.command).lower()
results = get_page_for_every_platform(
command,
options.source,
options.platform,
options.language
)
if not results:
sys.exit((
"`{cmd}` documentation is not available.\n"
"If you want to contribute it, feel free to"
" send a pull request to: https://github.com/tldr-pages/tldr"
).format(cmd=command))
else:
output(results[0][0], display_option_length, plain=options.markdown)
if results[0][1] not in (get_platform(), "common") and not options.platform:
warning_suffix = (
f": showing page from platform '{results[0][1]}', "
f"because '{command}' does not exist in '{get_platform()}' and 'common'."
)
if options.markdown:
print(f"warning{warning_suffix}")
else:
print(f"{colored('warning', 'yellow')}{warning_suffix}")
if results[1:]:
platforms_str = [result[1] for result in results[1:]]
are_multiple_platforms = len(platforms_str) > 1
if are_multiple_platforms:
print(
f"Found {len(platforms_str)} pages with the same name"
f" under the platforms: {', '.join(platforms_str)}."
)
else:
print(
f"Found 1 page with the same name"
f" under the platform: {platforms_str[0]}."
)
except URLError as e:
sys.exit("Error fetching from tldr: {}".format(e))
def cli() -> None:
try:
main()
except KeyboardInterrupt:
print("\nExited on keyboard interrupt.")
if __name__ == "__main__":
cli()