forked from patrickwardle/knockknock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutput.py
84 lines (57 loc) · 1.61 KB
/
output.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
import json
#project imports
import file
import command
#json encoder
class jsonEncoder(json.JSONEncoder):
#automatically invoked
# ->allows custom JSON encoding
def default(self, obj):
#for file and command objects
# ->return the objects dictionary
if isinstance(obj, file.File) or isinstance(obj, command.Command):
#object dictionary
return obj.__dict__
#other objects
# ->just super
else:
#super
return super(jsonEncoder, self).default(obj)
#format the results
# ->either just pretty for stdout or as JSON
def formatResults(results, asJSON):
#results; formatted
formattedResults = ""
#cumulative count of all startup objects
startupObjCount = 0
#format as JSON
# ->uses the jsonDecoder class (above) to dump the objects dictionary
if asJSON:
#will generate JSON
formattedResults = json.dumps(results, cls=jsonEncoder)
#pretty print the output for stdout
else:
#dbg msg
formattedResults += 'WHO\'S THERE:\n'
#iterate over all results
for result in results:
#add header (name)
if result['items']:
#format name/type of startup item
formattedResults += '\n[' + result['name'] + ']\n'
#iterate over each startup object
for startupObj in result['items']:
#inc count
startupObjCount += 1
#format object
# ->files and commands both implement prettyPrint()
formattedResults += startupObj.prettyPrint()
#none found?
if not startupObjCount:
#nothing found
formattedResults += '-> nobody :)\n'
#add info about totals
else:
#add total
formattedResults += '\nTOTAL ITEMS FOUND: %d\n' % startupObjCount
return formattedResults