-
Notifications
You must be signed in to change notification settings - Fork 18
/
mangler.py
executable file
·148 lines (130 loc) · 4.64 KB
/
mangler.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
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
#!/usr/bin/env python
# ---------------------------------------------------------------------------
# Copyright (c) 2005-2012 [email protected]
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# * Redistributions of source code must retain the above copyright notice,
# this list of conditions, and the following disclaimer.
# * Redistributions in binary form must reproduce the above copyright notice,
# this list of conditions, and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
# * Neither the name of the author of this software nor the name of
# contributors to this software may be used to endorse or promote products
# derived from this software without specific prior written consent.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
"""Posts stuff."""
import os
import sys
from ConfigParser import ConfigParser
from optparse import OptionParser
from newsmangler.common import ParseConfig
from newsmangler.postmangler import PostMangler
# ---------------------------------------------------------------------------
def main():
# Parse our command line options
parser = OptionParser(usage='usage: %prog [options] dir1 dir2 ... dirN')
parser.add_option('-c', '--config',
dest='config',
help='Specify a different config file location',
)
parser.add_option('-f', '--files',
dest='files',
help='Assume all arguments are filenames instead of directories, and use SUBJECT as the base subject',
metavar='SUBJECT',
)
parser.add_option('-g', '--group',
dest='group',
help='Post to a different group than the default',
)
# parser.add_option('-p', '--par2',
# dest='generate_par2',
# action='store_true',
# default=False,
# help="Generate PAR2 files in the background if they don't exist already.",
# )
parser.add_option('-d', '--debug',
dest='debug',
action='store_true',
default=False,
help="Enable debug logging",
)
parser.add_option('--profile',
dest='profile',
action='store_true',
default=False,
help='Run with the hotshot profiler (measures execution time of functions)',
)
(options, args) = parser.parse_args()
# No args? We have nothing to do!
if not args:
parser.print_help()
sys.exit(1)
# Make sure at least one of the args exists
postme = []
post_title = None
if options.files:
post_title = options.files
for arg in args:
if os.path.isfile(arg):
postme.append(arg)
else:
print 'ERROR: "%s" does not exist or is not a file!' % (arg)
else:
for arg in args:
if os.path.isdir(arg):
postme.append(arg)
else:
print 'ERROR: "%s" does not exist or is not a file!' % (arg)
if not postme:
print 'ERROR: no valid arguments provided on command line!'
sys.exit(1)
# Parse our configuration file
if options.config:
conf = ParseConfig(options.config)
else:
conf = ParseConfig()
# Make sure the group is ok
if options.group:
if '.' not in options.group:
newsgroup = conf['aliases'].get(options.group)
if not newsgroup:
print 'ERROR: group alias "%s" does not exist!' % (options.group)
sys.exit(1)
else:
newsgroup = options.group
else:
newsgroup = conf['posting']['default_group']
# Strip whitespace from the newsgroup list to obey RFC1036
for c in (' \t'):
newsgroup = newsgroup.replace(c, '')
# And off we go
poster = PostMangler(conf, options.debug)
if options.profile:
import hotshot
prof = hotshot.Profile('profile.poster')
prof.runcall(poster.post, newsgroup, postme, post_title=post_title)
prof.close()
import hotshot.stats
stats = hotshot.stats.load('profile.poster')
stats.strip_dirs()
stats.sort_stats('time', 'calls')
stats.print_stats(25)
else:
poster.post(newsgroup, postme, post_title=post_title)
# ---------------------------------------------------------------------------
if __name__ == '__main__':
main()