handlers.py
author Tero Marttila <terom@fixme.fi>
Wed, 11 Feb 2009 04:19:10 +0200
changeset 104 34c65a8c8b94
parent 96 d30c88e89a7e
child 108 d0aca7894fc5
permissions -rw-r--r--
split scripts/search-index options into groups
29
b06ff4c05d42 start prototyping some site-based code
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
     1
"""
b06ff4c05d42 start prototyping some site-based code
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
     2
    Our URL action handlers
b06ff4c05d42 start prototyping some site-based code
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
     3
"""
b06ff4c05d42 start prototyping some site-based code
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
     4
54
b65a95eb9f6b implement browse-by-date to show a nice calendar
Tero Marttila <terom@fixme.fi>
parents: 53
diff changeset
     5
import datetime, calendar, pytz
51
07ca28f3a9f2 use improved URLConfig/URLType
Tero Marttila <terom@fixme.fi>
parents: 50
diff changeset
     6
46
185504387370 reduce to irclogs.qmsk.net site
Tero Marttila <terom@fixme.fi>
parents: 43
diff changeset
     7
from qmsk.web import http, template
40
71ab68f31a1c the handlers work now
Tero Marttila <terom@fixme.fi>
parents: 36
diff changeset
     8
50
f13cf27a360b implement more LogSource features (logs for date, cleanup last_logs), implement irssi parser, formatter, other misc. stuff
Tero Marttila <terom@fixme.fi>
parents: 49
diff changeset
     9
import urls, channels, helpers
53
8103d18907a0 add some user-preferences support (e.g. timezone, time formats)
Tero Marttila <terom@fixme.fi>
parents: 51
diff changeset
    10
import preferences as prefs
8103d18907a0 add some user-preferences support (e.g. timezone, time formats)
Tero Marttila <terom@fixme.fi>
parents: 51
diff changeset
    11
from preferences import preferences
96
d30c88e89a7e move the LogSearchIndex open from handlers to log_search, and make it lazy
Tero Marttila <terom@fixme.fi>
parents: 87
diff changeset
    12
import config, log_search
42
5a72c00c4ae4 more fiddling around with the irclogs layout/css, add query args to URL
Tero Marttila <terom@fixme.fi>
parents: 41
diff changeset
    13
41
9585441a4bfb working basic logs stuff
Tero Marttila <terom@fixme.fi>
parents: 40
diff changeset
    14
# load templates from here
47
3d59c9eeffaa fix template path
Tero Marttila <terom@fixme.fi>
parents: 46
diff changeset
    15
templates = template.TemplateLoader("templates",
54
b65a95eb9f6b implement browse-by-date to show a nice calendar
Tero Marttila <terom@fixme.fi>
parents: 53
diff changeset
    16
    _helper_class   = helpers.Helpers,
42
5a72c00c4ae4 more fiddling around with the irclogs layout/css, add query args to URL
Tero Marttila <terom@fixme.fi>
parents: 41
diff changeset
    17
    urls            = urls,
73
5a7188bf2894 split defined configuration constants into config, and implement search result pagination
Tero Marttila <terom@fixme.fi>
parents: 72
diff changeset
    18
    channel_list    = config.LOG_CHANNELS,
5a7188bf2894 split defined configuration constants into config, and implement search result pagination
Tero Marttila <terom@fixme.fi>
parents: 72
diff changeset
    19
    config          = config,
42
5a72c00c4ae4 more fiddling around with the irclogs layout/css, add query args to URL
Tero Marttila <terom@fixme.fi>
parents: 41
diff changeset
    20
)
40
71ab68f31a1c the handlers work now
Tero Marttila <terom@fixme.fi>
parents: 36
diff changeset
    21
29
b06ff4c05d42 start prototyping some site-based code
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    22
def index (request) :
b06ff4c05d42 start prototyping some site-based code
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    23
    """
b06ff4c05d42 start prototyping some site-based code
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    24
        The topmost index page, display a list of available channels, perhaps some general stats
b06ff4c05d42 start prototyping some site-based code
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    25
    """
40
71ab68f31a1c the handlers work now
Tero Marttila <terom@fixme.fi>
parents: 36
diff changeset
    26
    
42
5a72c00c4ae4 more fiddling around with the irclogs layout/css, add query args to URL
Tero Marttila <terom@fixme.fi>
parents: 41
diff changeset
    27
    return templates.render_to_response("index",
5a72c00c4ae4 more fiddling around with the irclogs layout/css, add query args to URL
Tero Marttila <terom@fixme.fi>
parents: 41
diff changeset
    28
        req             = request,
5a72c00c4ae4 more fiddling around with the irclogs layout/css, add query args to URL
Tero Marttila <terom@fixme.fi>
parents: 41
diff changeset
    29
    )
5a72c00c4ae4 more fiddling around with the irclogs layout/css, add query args to URL
Tero Marttila <terom@fixme.fi>
parents: 41
diff changeset
    30
59
8ec729c5d998 ugly, but working, preferences editor
Tero Marttila <terom@fixme.fi>
parents: 56
diff changeset
    31
# XXX: fix this namespace crap
8ec729c5d998 ugly, but working, preferences editor
Tero Marttila <terom@fixme.fi>
parents: 56
diff changeset
    32
@preferences.handler()
8ec729c5d998 ugly, but working, preferences editor
Tero Marttila <terom@fixme.fi>
parents: 56
diff changeset
    33
def preferences_ (request) :
8ec729c5d998 ugly, but working, preferences editor
Tero Marttila <terom@fixme.fi>
parents: 56
diff changeset
    34
    """
8ec729c5d998 ugly, but working, preferences editor
Tero Marttila <terom@fixme.fi>
parents: 56
diff changeset
    35
        Preferences editor
8ec729c5d998 ugly, but working, preferences editor
Tero Marttila <terom@fixme.fi>
parents: 56
diff changeset
    36
    """
8ec729c5d998 ugly, but working, preferences editor
Tero Marttila <terom@fixme.fi>
parents: 56
diff changeset
    37
8ec729c5d998 ugly, but working, preferences editor
Tero Marttila <terom@fixme.fi>
parents: 56
diff changeset
    38
    # POST?
8ec729c5d998 ugly, but working, preferences editor
Tero Marttila <terom@fixme.fi>
parents: 56
diff changeset
    39
    if request.is_post() :
8ec729c5d998 ugly, but working, preferences editor
Tero Marttila <terom@fixme.fi>
parents: 56
diff changeset
    40
        # update any modified preferences
8ec729c5d998 ugly, but working, preferences editor
Tero Marttila <terom@fixme.fi>
parents: 56
diff changeset
    41
        for pref in preferences.pref_list :
8ec729c5d998 ugly, but working, preferences editor
Tero Marttila <terom@fixme.fi>
parents: 56
diff changeset
    42
            # get+parse new POST'd value
8ec729c5d998 ugly, but working, preferences editor
Tero Marttila <terom@fixme.fi>
parents: 56
diff changeset
    43
            # XXX: this doesn't postprocess
8ec729c5d998 ugly, but working, preferences editor
Tero Marttila <terom@fixme.fi>
parents: 56
diff changeset
    44
            new_value = pref.parse(request.get_post(pref.name))
8ec729c5d998 ugly, but working, preferences editor
Tero Marttila <terom@fixme.fi>
parents: 56
diff changeset
    45
8ec729c5d998 ugly, but working, preferences editor
Tero Marttila <terom@fixme.fi>
parents: 56
diff changeset
    46
            # update if changed
8ec729c5d998 ugly, but working, preferences editor
Tero Marttila <terom@fixme.fi>
parents: 56
diff changeset
    47
            if new_value != request.prefs[pref] :
8ec729c5d998 ugly, but working, preferences editor
Tero Marttila <terom@fixme.fi>
parents: 56
diff changeset
    48
                request.prefs.set(pref.name, new_value)
8ec729c5d998 ugly, but working, preferences editor
Tero Marttila <terom@fixme.fi>
parents: 56
diff changeset
    49
8ec729c5d998 ugly, but working, preferences editor
Tero Marttila <terom@fixme.fi>
parents: 56
diff changeset
    50
    # render
8ec729c5d998 ugly, but working, preferences editor
Tero Marttila <terom@fixme.fi>
parents: 56
diff changeset
    51
    return templates.render_to_response("preferences",
8ec729c5d998 ugly, but working, preferences editor
Tero Marttila <terom@fixme.fi>
parents: 56
diff changeset
    52
        req             = request,
8ec729c5d998 ugly, but working, preferences editor
Tero Marttila <terom@fixme.fi>
parents: 56
diff changeset
    53
        prefs           = request.prefs,
8ec729c5d998 ugly, but working, preferences editor
Tero Marttila <terom@fixme.fi>
parents: 56
diff changeset
    54
        preferences     = prefs,
8ec729c5d998 ugly, but working, preferences editor
Tero Marttila <terom@fixme.fi>
parents: 56
diff changeset
    55
        timezones       = pytz.common_timezones,
8ec729c5d998 ugly, but working, preferences editor
Tero Marttila <terom@fixme.fi>
parents: 56
diff changeset
    56
    )
8ec729c5d998 ugly, but working, preferences editor
Tero Marttila <terom@fixme.fi>
parents: 56
diff changeset
    57
42
5a72c00c4ae4 more fiddling around with the irclogs layout/css, add query args to URL
Tero Marttila <terom@fixme.fi>
parents: 41
diff changeset
    58
def channel_select (request, channel) :
5a72c00c4ae4 more fiddling around with the irclogs layout/css, add query args to URL
Tero Marttila <terom@fixme.fi>
parents: 41
diff changeset
    59
    """
5a72c00c4ae4 more fiddling around with the irclogs layout/css, add query args to URL
Tero Marttila <terom@fixme.fi>
parents: 41
diff changeset
    60
        Redirect to the appropriate channel_view
5a72c00c4ae4 more fiddling around with the irclogs layout/css, add query args to URL
Tero Marttila <terom@fixme.fi>
parents: 41
diff changeset
    61
    """
5a72c00c4ae4 more fiddling around with the irclogs layout/css, add query args to URL
Tero Marttila <terom@fixme.fi>
parents: 41
diff changeset
    62
   
70
72edbbb414a7 merge channel_view and channel_last, adding a More link to channel_last.tmpl
Tero Marttila <terom@fixme.fi>
parents: 66
diff changeset
    63
    return http.Redirect(urls.channel.build(request, channel=channel))
29
b06ff4c05d42 start prototyping some site-based code
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    64
59
8ec729c5d998 ugly, but working, preferences editor
Tero Marttila <terom@fixme.fi>
parents: 56
diff changeset
    65
@preferences.handler(prefs.formatter)
79
43ac75054d5c image formatting \o/
Tero Marttila <terom@fixme.fi>
parents: 78
diff changeset
    66
def channel_last (request, channel, count, formatter, type=None) :
29
b06ff4c05d42 start prototyping some site-based code
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    67
    """
70
72edbbb414a7 merge channel_view and channel_last, adding a More link to channel_last.tmpl
Tero Marttila <terom@fixme.fi>
parents: 66
diff changeset
    68
        The main channel view page, displaying the most recent lines
29
b06ff4c05d42 start prototyping some site-based code
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
    69
    """
79
43ac75054d5c image formatting \o/
Tero Marttila <terom@fixme.fi>
parents: 78
diff changeset
    70
 
50
f13cf27a360b implement more LogSource features (logs for date, cleanup last_logs), implement irssi parser, formatter, other misc. stuff
Tero Marttila <terom@fixme.fi>
parents: 49
diff changeset
    71
    # get latest events
f13cf27a360b implement more LogSource features (logs for date, cleanup last_logs), implement irssi parser, formatter, other misc. stuff
Tero Marttila <terom@fixme.fi>
parents: 49
diff changeset
    72
    lines = channel.source.get_latest(count)
79
43ac75054d5c image formatting \o/
Tero Marttila <terom@fixme.fi>
parents: 78
diff changeset
    73
   
43ac75054d5c image formatting \o/
Tero Marttila <terom@fixme.fi>
parents: 78
diff changeset
    74
    # we can render in various modes...
43ac75054d5c image formatting \o/
Tero Marttila <terom@fixme.fi>
parents: 78
diff changeset
    75
    if not type :
43ac75054d5c image formatting \o/
Tero Marttila <terom@fixme.fi>
parents: 78
diff changeset
    76
        # normal HTML
43ac75054d5c image formatting \o/
Tero Marttila <terom@fixme.fi>
parents: 78
diff changeset
    77
        lines = formatter.format_html(lines)
43
fc11c4e86a82 implement channel_view count, the query stuff, css, layout all need some cleanup :(
Tero Marttila <terom@fixme.fi>
parents: 42
diff changeset
    78
79
43ac75054d5c image formatting \o/
Tero Marttila <terom@fixme.fi>
parents: 78
diff changeset
    79
        return templates.render_to_response("channel_last",
43ac75054d5c image formatting \o/
Tero Marttila <terom@fixme.fi>
parents: 78
diff changeset
    80
            req             = request,
43ac75054d5c image formatting \o/
Tero Marttila <terom@fixme.fi>
parents: 78
diff changeset
    81
            prefs           = request.prefs,
43ac75054d5c image formatting \o/
Tero Marttila <terom@fixme.fi>
parents: 78
diff changeset
    82
            channel         = channel,
43ac75054d5c image formatting \o/
Tero Marttila <terom@fixme.fi>
parents: 78
diff changeset
    83
            count           = count,
43ac75054d5c image formatting \o/
Tero Marttila <terom@fixme.fi>
parents: 78
diff changeset
    84
            lines           = lines,
43ac75054d5c image formatting \o/
Tero Marttila <terom@fixme.fi>
parents: 78
diff changeset
    85
        )
43ac75054d5c image formatting \o/
Tero Marttila <terom@fixme.fi>
parents: 78
diff changeset
    86
    
43ac75054d5c image formatting \o/
Tero Marttila <terom@fixme.fi>
parents: 78
diff changeset
    87
    elif type == 'txt' :
43ac75054d5c image formatting \o/
Tero Marttila <terom@fixme.fi>
parents: 78
diff changeset
    88
        # plaintext
43ac75054d5c image formatting \o/
Tero Marttila <terom@fixme.fi>
parents: 78
diff changeset
    89
        lines = formatter.format_txt(lines)
43ac75054d5c image formatting \o/
Tero Marttila <terom@fixme.fi>
parents: 78
diff changeset
    90
43ac75054d5c image formatting \o/
Tero Marttila <terom@fixme.fi>
parents: 78
diff changeset
    91
        # build data
43ac75054d5c image formatting \o/
Tero Marttila <terom@fixme.fi>
parents: 78
diff changeset
    92
        data = '\n'.join(data for line, data in lines)
43ac75054d5c image formatting \o/
Tero Marttila <terom@fixme.fi>
parents: 78
diff changeset
    93
43ac75054d5c image formatting \o/
Tero Marttila <terom@fixme.fi>
parents: 78
diff changeset
    94
        return http.Response(data, 'text/plain')
43ac75054d5c image formatting \o/
Tero Marttila <terom@fixme.fi>
parents: 78
diff changeset
    95
43ac75054d5c image formatting \o/
Tero Marttila <terom@fixme.fi>
parents: 78
diff changeset
    96
    elif type == 'png' :
43ac75054d5c image formatting \o/
Tero Marttila <terom@fixme.fi>
parents: 78
diff changeset
    97
        # PNG image
43ac75054d5c image formatting \o/
Tero Marttila <terom@fixme.fi>
parents: 78
diff changeset
    98
        png_data = formatter.format_png(lines)
43ac75054d5c image formatting \o/
Tero Marttila <terom@fixme.fi>
parents: 78
diff changeset
    99
43ac75054d5c image formatting \o/
Tero Marttila <terom@fixme.fi>
parents: 78
diff changeset
   100
        return http.Response(png_data, 'image/png', charset=None)
80
a0662cff1d9d add RSSFormatter, and link to different types from channel_last.tmpl...
Tero Marttila <terom@fixme.fi>
parents: 79
diff changeset
   101
    
a0662cff1d9d add RSSFormatter, and link to different types from channel_last.tmpl...
Tero Marttila <terom@fixme.fi>
parents: 79
diff changeset
   102
    elif type == 'rss' :
a0662cff1d9d add RSSFormatter, and link to different types from channel_last.tmpl...
Tero Marttila <terom@fixme.fi>
parents: 79
diff changeset
   103
        # RSS feed
a0662cff1d9d add RSSFormatter, and link to different types from channel_last.tmpl...
Tero Marttila <terom@fixme.fi>
parents: 79
diff changeset
   104
        rss_data = formatter.format_rss(lines)
a0662cff1d9d add RSSFormatter, and link to different types from channel_last.tmpl...
Tero Marttila <terom@fixme.fi>
parents: 79
diff changeset
   105
a0662cff1d9d add RSSFormatter, and link to different types from channel_last.tmpl...
Tero Marttila <terom@fixme.fi>
parents: 79
diff changeset
   106
        return http.Response(rss_data, 'application/rss+xml')
79
43ac75054d5c image formatting \o/
Tero Marttila <terom@fixme.fi>
parents: 78
diff changeset
   107
43ac75054d5c image formatting \o/
Tero Marttila <terom@fixme.fi>
parents: 78
diff changeset
   108
    else :
43ac75054d5c image formatting \o/
Tero Marttila <terom@fixme.fi>
parents: 78
diff changeset
   109
        raise http.ResponseError("Unrecognized type: %r" % (type, ))
40
71ab68f31a1c the handlers work now
Tero Marttila <terom@fixme.fi>
parents: 36
diff changeset
   110
78
85345abbd46a implement pagination for channel_link
Tero Marttila <terom@fixme.fi>
parents: 77
diff changeset
   111
@preferences.handler(prefs.formatter, prefs.timezone, prefs.count)
85345abbd46a implement pagination for channel_link
Tero Marttila <terom@fixme.fi>
parents: 77
diff changeset
   112
def channel_link (request, channel, timestamp, formatter, timezone, count) :
72
5ade0288f2ec implement line-links as UTC timestamps
Tero Marttila <terom@fixme.fi>
parents: 70
diff changeset
   113
    """
5ade0288f2ec implement line-links as UTC timestamps
Tero Marttila <terom@fixme.fi>
parents: 70
diff changeset
   114
        Display channel_date for specific UTC timestamp
5ade0288f2ec implement line-links as UTC timestamps
Tero Marttila <terom@fixme.fi>
parents: 70
diff changeset
   115
    """
5ade0288f2ec implement line-links as UTC timestamps
Tero Marttila <terom@fixme.fi>
parents: 70
diff changeset
   116
5ade0288f2ec implement line-links as UTC timestamps
Tero Marttila <terom@fixme.fi>
parents: 70
diff changeset
   117
    # convert timestamp to user's timezone
5ade0288f2ec implement line-links as UTC timestamps
Tero Marttila <terom@fixme.fi>
parents: 70
diff changeset
   118
    timestamp = timestamp.astimezone(timezone)
5ade0288f2ec implement line-links as UTC timestamps
Tero Marttila <terom@fixme.fi>
parents: 70
diff changeset
   119
78
85345abbd46a implement pagination for channel_link
Tero Marttila <terom@fixme.fi>
parents: 77
diff changeset
   120
    # get correct day's correct page of lines
85345abbd46a implement pagination for channel_link
Tero Marttila <terom@fixme.fi>
parents: 77
diff changeset
   121
    page, max, lines = channel.source.get_date_paged(timestamp, count)
72
5ade0288f2ec implement line-links as UTC timestamps
Tero Marttila <terom@fixme.fi>
parents: 70
diff changeset
   122
5ade0288f2ec implement line-links as UTC timestamps
Tero Marttila <terom@fixme.fi>
parents: 70
diff changeset
   123
    # lines
5ade0288f2ec implement line-links as UTC timestamps
Tero Marttila <terom@fixme.fi>
parents: 70
diff changeset
   124
    lines = formatter.format_html(lines)
5ade0288f2ec implement line-links as UTC timestamps
Tero Marttila <terom@fixme.fi>
parents: 70
diff changeset
   125
5ade0288f2ec implement line-links as UTC timestamps
Tero Marttila <terom@fixme.fi>
parents: 70
diff changeset
   126
    # render
5ade0288f2ec implement line-links as UTC timestamps
Tero Marttila <terom@fixme.fi>
parents: 70
diff changeset
   127
    return templates.render_to_response("channel_date",
5ade0288f2ec implement line-links as UTC timestamps
Tero Marttila <terom@fixme.fi>
parents: 70
diff changeset
   128
        req             = request,
5ade0288f2ec implement line-links as UTC timestamps
Tero Marttila <terom@fixme.fi>
parents: 70
diff changeset
   129
        prefs           = request.prefs,
5ade0288f2ec implement line-links as UTC timestamps
Tero Marttila <terom@fixme.fi>
parents: 70
diff changeset
   130
        channel         = channel,
5ade0288f2ec implement line-links as UTC timestamps
Tero Marttila <terom@fixme.fi>
parents: 70
diff changeset
   131
        date            = timestamp,
78
85345abbd46a implement pagination for channel_link
Tero Marttila <terom@fixme.fi>
parents: 77
diff changeset
   132
        page            = page,
85345abbd46a implement pagination for channel_link
Tero Marttila <terom@fixme.fi>
parents: 77
diff changeset
   133
        count           = count,
85345abbd46a implement pagination for channel_link
Tero Marttila <terom@fixme.fi>
parents: 77
diff changeset
   134
        max             = max,
72
5ade0288f2ec implement line-links as UTC timestamps
Tero Marttila <terom@fixme.fi>
parents: 70
diff changeset
   135
        lines           = lines,
5ade0288f2ec implement line-links as UTC timestamps
Tero Marttila <terom@fixme.fi>
parents: 70
diff changeset
   136
    )
5ade0288f2ec implement line-links as UTC timestamps
Tero Marttila <terom@fixme.fi>
parents: 70
diff changeset
   137
59
8ec729c5d998 ugly, but working, preferences editor
Tero Marttila <terom@fixme.fi>
parents: 56
diff changeset
   138
@preferences.handler(prefs.timezone)
54
b65a95eb9f6b implement browse-by-date to show a nice calendar
Tero Marttila <terom@fixme.fi>
parents: 53
diff changeset
   139
def channel_calendar (request, channel, year, month, timezone) :
51
07ca28f3a9f2 use improved URLConfig/URLType
Tero Marttila <terom@fixme.fi>
parents: 50
diff changeset
   140
    """
54
b65a95eb9f6b implement browse-by-date to show a nice calendar
Tero Marttila <terom@fixme.fi>
parents: 53
diff changeset
   141
        Display a list of avilable logs for some month
51
07ca28f3a9f2 use improved URLConfig/URLType
Tero Marttila <terom@fixme.fi>
parents: 50
diff changeset
   142
    """
07ca28f3a9f2 use improved URLConfig/URLType
Tero Marttila <terom@fixme.fi>
parents: 50
diff changeset
   143
54
b65a95eb9f6b implement browse-by-date to show a nice calendar
Tero Marttila <terom@fixme.fi>
parents: 53
diff changeset
   144
    # current date as default
b65a95eb9f6b implement browse-by-date to show a nice calendar
Tero Marttila <terom@fixme.fi>
parents: 53
diff changeset
   145
    now = timezone.localize(datetime.datetime.now())
b65a95eb9f6b implement browse-by-date to show a nice calendar
Tero Marttila <terom@fixme.fi>
parents: 53
diff changeset
   146
b65a95eb9f6b implement browse-by-date to show a nice calendar
Tero Marttila <terom@fixme.fi>
parents: 53
diff changeset
   147
    # target year/month
b65a95eb9f6b implement browse-by-date to show a nice calendar
Tero Marttila <terom@fixme.fi>
parents: 53
diff changeset
   148
    target = timezone.localize(datetime.datetime(
b65a95eb9f6b implement browse-by-date to show a nice calendar
Tero Marttila <terom@fixme.fi>
parents: 53
diff changeset
   149
        year    = year if year else now.year,
b65a95eb9f6b implement browse-by-date to show a nice calendar
Tero Marttila <terom@fixme.fi>
parents: 53
diff changeset
   150
        month   = month if month else now.month,
b65a95eb9f6b implement browse-by-date to show a nice calendar
Tero Marttila <terom@fixme.fi>
parents: 53
diff changeset
   151
        day     = 1
b65a95eb9f6b implement browse-by-date to show a nice calendar
Tero Marttila <terom@fixme.fi>
parents: 53
diff changeset
   152
    ))
b65a95eb9f6b implement browse-by-date to show a nice calendar
Tero Marttila <terom@fixme.fi>
parents: 53
diff changeset
   153
b65a95eb9f6b implement browse-by-date to show a nice calendar
Tero Marttila <terom@fixme.fi>
parents: 53
diff changeset
   154
    # get set of days available
83
a34e9f56ddda improve parser resilience, improve get_month_days, add 'Channel' item to general menu
Tero Marttila <terom@fixme.fi>
parents: 82
diff changeset
   155
    days = set(channel.source.get_month_days(target))
54
b65a95eb9f6b implement browse-by-date to show a nice calendar
Tero Marttila <terom@fixme.fi>
parents: 53
diff changeset
   156
b65a95eb9f6b implement browse-by-date to show a nice calendar
Tero Marttila <terom@fixme.fi>
parents: 53
diff changeset
   157
    # display calendar
b65a95eb9f6b implement browse-by-date to show a nice calendar
Tero Marttila <terom@fixme.fi>
parents: 53
diff changeset
   158
    return templates.render_to_response("channel_calendar",
b65a95eb9f6b implement browse-by-date to show a nice calendar
Tero Marttila <terom@fixme.fi>
parents: 53
diff changeset
   159
        req             = request,
62
e7ca94b94a4e add prefs to render context, and remove old timezone/formatter from it
Tero Marttila <terom@fixme.fi>
parents: 59
diff changeset
   160
        prefs           = request.prefs,
54
b65a95eb9f6b implement browse-by-date to show a nice calendar
Tero Marttila <terom@fixme.fi>
parents: 53
diff changeset
   161
        channel         = channel,
b65a95eb9f6b implement browse-by-date to show a nice calendar
Tero Marttila <terom@fixme.fi>
parents: 53
diff changeset
   162
        calendar        = calendar.Calendar(),
b65a95eb9f6b implement browse-by-date to show a nice calendar
Tero Marttila <terom@fixme.fi>
parents: 53
diff changeset
   163
        month           = target.date(),
b65a95eb9f6b implement browse-by-date to show a nice calendar
Tero Marttila <terom@fixme.fi>
parents: 53
diff changeset
   164
        days            = days,
b65a95eb9f6b implement browse-by-date to show a nice calendar
Tero Marttila <terom@fixme.fi>
parents: 53
diff changeset
   165
    )
51
07ca28f3a9f2 use improved URLConfig/URLType
Tero Marttila <terom@fixme.fi>
parents: 50
diff changeset
   166
76
cc3ab2c39ded fix off-by-one with search paginate, and implement basic pagination for channel_date
Tero Marttila <terom@fixme.fi>
parents: 75
diff changeset
   167
@preferences.handler(prefs.formatter, prefs.timezone, prefs.count)
77
4287fb77e312 implement max_pages, and paginate channel_date by default now
Tero Marttila <terom@fixme.fi>
parents: 76
diff changeset
   168
def channel_date (request, channel, date, formatter, timezone, count, page=1) :
50
f13cf27a360b implement more LogSource features (logs for date, cleanup last_logs), implement irssi parser, formatter, other misc. stuff
Tero Marttila <terom@fixme.fi>
parents: 49
diff changeset
   169
    """
f13cf27a360b implement more LogSource features (logs for date, cleanup last_logs), implement irssi parser, formatter, other misc. stuff
Tero Marttila <terom@fixme.fi>
parents: 49
diff changeset
   170
        Display all log data for the given date
f13cf27a360b implement more LogSource features (logs for date, cleanup last_logs), implement irssi parser, formatter, other misc. stuff
Tero Marttila <terom@fixme.fi>
parents: 49
diff changeset
   171
    """
76
cc3ab2c39ded fix off-by-one with search paginate, and implement basic pagination for channel_date
Tero Marttila <terom@fixme.fi>
parents: 75
diff changeset
   172
53
8103d18907a0 add some user-preferences support (e.g. timezone, time formats)
Tero Marttila <terom@fixme.fi>
parents: 51
diff changeset
   173
    # fix date timezone
8103d18907a0 add some user-preferences support (e.g. timezone, time formats)
Tero Marttila <terom@fixme.fi>
parents: 51
diff changeset
   174
    date = date.replace(tzinfo=timezone)
50
f13cf27a360b implement more LogSource features (logs for date, cleanup last_logs), implement irssi parser, formatter, other misc. stuff
Tero Marttila <terom@fixme.fi>
parents: 49
diff changeset
   175
78
85345abbd46a implement pagination for channel_link
Tero Marttila <terom@fixme.fi>
parents: 77
diff changeset
   176
    # get that day's events, either paged or not
76
cc3ab2c39ded fix off-by-one with search paginate, and implement basic pagination for channel_date
Tero Marttila <terom@fixme.fi>
parents: 75
diff changeset
   177
    if page :
cc3ab2c39ded fix off-by-one with search paginate, and implement basic pagination for channel_date
Tero Marttila <terom@fixme.fi>
parents: 75
diff changeset
   178
        page, max, lines = channel.source.get_date_paged(date, count, page)
cc3ab2c39ded fix off-by-one with search paginate, and implement basic pagination for channel_date
Tero Marttila <terom@fixme.fi>
parents: 75
diff changeset
   179
        
cc3ab2c39ded fix off-by-one with search paginate, and implement basic pagination for channel_date
Tero Marttila <terom@fixme.fi>
parents: 75
diff changeset
   180
    else :
cc3ab2c39ded fix off-by-one with search paginate, and implement basic pagination for channel_date
Tero Marttila <terom@fixme.fi>
parents: 75
diff changeset
   181
        lines = channel.source.get_date(date)
cc3ab2c39ded fix off-by-one with search paginate, and implement basic pagination for channel_date
Tero Marttila <terom@fixme.fi>
parents: 75
diff changeset
   182
        max = None
50
f13cf27a360b implement more LogSource features (logs for date, cleanup last_logs), implement irssi parser, formatter, other misc. stuff
Tero Marttila <terom@fixme.fi>
parents: 49
diff changeset
   183
51
07ca28f3a9f2 use improved URLConfig/URLType
Tero Marttila <terom@fixme.fi>
parents: 50
diff changeset
   184
    # lines
50
f13cf27a360b implement more LogSource features (logs for date, cleanup last_logs), implement irssi parser, formatter, other misc. stuff
Tero Marttila <terom@fixme.fi>
parents: 49
diff changeset
   185
    lines = formatter.format_html(lines)
f13cf27a360b implement more LogSource features (logs for date, cleanup last_logs), implement irssi parser, formatter, other misc. stuff
Tero Marttila <terom@fixme.fi>
parents: 49
diff changeset
   186
63
416560b82116 rudimentary search
Tero Marttila <terom@fixme.fi>
parents: 62
diff changeset
   187
    # render
50
f13cf27a360b implement more LogSource features (logs for date, cleanup last_logs), implement irssi parser, formatter, other misc. stuff
Tero Marttila <terom@fixme.fi>
parents: 49
diff changeset
   188
    return templates.render_to_response("channel_date",
f13cf27a360b implement more LogSource features (logs for date, cleanup last_logs), implement irssi parser, formatter, other misc. stuff
Tero Marttila <terom@fixme.fi>
parents: 49
diff changeset
   189
        req             = request,
62
e7ca94b94a4e add prefs to render context, and remove old timezone/formatter from it
Tero Marttila <terom@fixme.fi>
parents: 59
diff changeset
   190
        prefs           = request.prefs,
50
f13cf27a360b implement more LogSource features (logs for date, cleanup last_logs), implement irssi parser, formatter, other misc. stuff
Tero Marttila <terom@fixme.fi>
parents: 49
diff changeset
   191
        channel         = channel,
f13cf27a360b implement more LogSource features (logs for date, cleanup last_logs), implement irssi parser, formatter, other misc. stuff
Tero Marttila <terom@fixme.fi>
parents: 49
diff changeset
   192
        date            = date,
76
cc3ab2c39ded fix off-by-one with search paginate, and implement basic pagination for channel_date
Tero Marttila <terom@fixme.fi>
parents: 75
diff changeset
   193
        page            = page,
cc3ab2c39ded fix off-by-one with search paginate, and implement basic pagination for channel_date
Tero Marttila <terom@fixme.fi>
parents: 75
diff changeset
   194
        count           = count,
cc3ab2c39ded fix off-by-one with search paginate, and implement basic pagination for channel_date
Tero Marttila <terom@fixme.fi>
parents: 75
diff changeset
   195
        max             = max,
50
f13cf27a360b implement more LogSource features (logs for date, cleanup last_logs), implement irssi parser, formatter, other misc. stuff
Tero Marttila <terom@fixme.fi>
parents: 49
diff changeset
   196
        lines           = lines,
f13cf27a360b implement more LogSource features (logs for date, cleanup last_logs), implement irssi parser, formatter, other misc. stuff
Tero Marttila <terom@fixme.fi>
parents: 49
diff changeset
   197
    )
f13cf27a360b implement more LogSource features (logs for date, cleanup last_logs), implement irssi parser, formatter, other misc. stuff
Tero Marttila <terom@fixme.fi>
parents: 49
diff changeset
   198
73
5a7188bf2894 split defined configuration constants into config, and implement search result pagination
Tero Marttila <terom@fixme.fi>
parents: 72
diff changeset
   199
@preferences.handler(prefs.formatter, prefs.count)
75
c5ce145fdd70 fix pagination to just use page numbers... less bugs
Tero Marttila <terom@fixme.fi>
parents: 74
diff changeset
   200
def channel_search (request, channel, formatter, count, q=None, page=1, max=1) :
36
02d4040d5946 start working on some nify URL parsing
Tero Marttila <terom@fixme.fi>
parents: 29
diff changeset
   201
    """
75
c5ce145fdd70 fix pagination to just use page numbers... less bugs
Tero Marttila <terom@fixme.fi>
parents: 74
diff changeset
   202
        Display the search form for the channel for GET, or do the search for POST.
36
02d4040d5946 start working on some nify URL parsing
Tero Marttila <terom@fixme.fi>
parents: 29
diff changeset
   203
    """
02d4040d5946 start working on some nify URL parsing
Tero Marttila <terom@fixme.fi>
parents: 29
diff changeset
   204
75
c5ce145fdd70 fix pagination to just use page numbers... less bugs
Tero Marttila <terom@fixme.fi>
parents: 74
diff changeset
   205
    # calculate skip offset from page/count
76
cc3ab2c39ded fix off-by-one with search paginate, and implement basic pagination for channel_date
Tero Marttila <terom@fixme.fi>
parents: 75
diff changeset
   206
    skip = (page - 1) * count
75
c5ce145fdd70 fix pagination to just use page numbers... less bugs
Tero Marttila <terom@fixme.fi>
parents: 74
diff changeset
   207
63
416560b82116 rudimentary search
Tero Marttila <terom@fixme.fi>
parents: 62
diff changeset
   208
    # got a search query?
416560b82116 rudimentary search
Tero Marttila <terom@fixme.fi>
parents: 62
diff changeset
   209
    if q :
74
1ab95857d584 handle the 'no search results' case
Tero Marttila <terom@fixme.fi>
parents: 73
diff changeset
   210
        try :
1ab95857d584 handle the 'no search results' case
Tero Marttila <terom@fixme.fi>
parents: 73
diff changeset
   211
            # do search
96
d30c88e89a7e move the LogSearchIndex open from handlers to log_search, and make it lazy
Tero Marttila <terom@fixme.fi>
parents: 87
diff changeset
   212
            lines = log_search.get_index().search_simple(channel, q, count, skip)
75
c5ce145fdd70 fix pagination to just use page numbers... less bugs
Tero Marttila <terom@fixme.fi>
parents: 74
diff changeset
   213
c5ce145fdd70 fix pagination to just use page numbers... less bugs
Tero Marttila <terom@fixme.fi>
parents: 74
diff changeset
   214
            # update max?
c5ce145fdd70 fix pagination to just use page numbers... less bugs
Tero Marttila <terom@fixme.fi>
parents: 74
diff changeset
   215
            if max and page > max :
c5ce145fdd70 fix pagination to just use page numbers... less bugs
Tero Marttila <terom@fixme.fi>
parents: 74
diff changeset
   216
                max = page
74
1ab95857d584 handle the 'no search results' case
Tero Marttila <terom@fixme.fi>
parents: 73
diff changeset
   217
        
1ab95857d584 handle the 'no search results' case
Tero Marttila <terom@fixme.fi>
parents: 73
diff changeset
   218
        except log_search.NoResultsFound :
1ab95857d584 handle the 'no search results' case
Tero Marttila <terom@fixme.fi>
parents: 73
diff changeset
   219
            # no lines
1ab95857d584 handle the 'no search results' case
Tero Marttila <terom@fixme.fi>
parents: 73
diff changeset
   220
            lines = None
36
02d4040d5946 start working on some nify URL parsing
Tero Marttila <terom@fixme.fi>
parents: 29
diff changeset
   221
74
1ab95857d584 handle the 'no search results' case
Tero Marttila <terom@fixme.fi>
parents: 73
diff changeset
   222
        else :
1ab95857d584 handle the 'no search results' case
Tero Marttila <terom@fixme.fi>
parents: 73
diff changeset
   223
            # format
1ab95857d584 handle the 'no search results' case
Tero Marttila <terom@fixme.fi>
parents: 73
diff changeset
   224
            lines = formatter.format_html(lines, full_timestamps=True)
63
416560b82116 rudimentary search
Tero Marttila <terom@fixme.fi>
parents: 62
diff changeset
   225
416560b82116 rudimentary search
Tero Marttila <terom@fixme.fi>
parents: 62
diff changeset
   226
    else :
416560b82116 rudimentary search
Tero Marttila <terom@fixme.fi>
parents: 62
diff changeset
   227
        lines = None
416560b82116 rudimentary search
Tero Marttila <terom@fixme.fi>
parents: 62
diff changeset
   228
    
416560b82116 rudimentary search
Tero Marttila <terom@fixme.fi>
parents: 62
diff changeset
   229
    # render
416560b82116 rudimentary search
Tero Marttila <terom@fixme.fi>
parents: 62
diff changeset
   230
    return templates.render_to_response("channel_search",
416560b82116 rudimentary search
Tero Marttila <terom@fixme.fi>
parents: 62
diff changeset
   231
        req             = request,
416560b82116 rudimentary search
Tero Marttila <terom@fixme.fi>
parents: 62
diff changeset
   232
        prefs           = request.prefs,
416560b82116 rudimentary search
Tero Marttila <terom@fixme.fi>
parents: 62
diff changeset
   233
        channel         = channel,
65
8b50694f841e improve search further
Tero Marttila <terom@fixme.fi>
parents: 63
diff changeset
   234
        search_query    = q,
73
5a7188bf2894 split defined configuration constants into config, and implement search result pagination
Tero Marttila <terom@fixme.fi>
parents: 72
diff changeset
   235
        count           = count,
75
c5ce145fdd70 fix pagination to just use page numbers... less bugs
Tero Marttila <terom@fixme.fi>
parents: 74
diff changeset
   236
        page            = page,
73
5a7188bf2894 split defined configuration constants into config, and implement search result pagination
Tero Marttila <terom@fixme.fi>
parents: 72
diff changeset
   237
        skip            = skip,
5a7188bf2894 split defined configuration constants into config, and implement search result pagination
Tero Marttila <terom@fixme.fi>
parents: 72
diff changeset
   238
        max             = max,
63
416560b82116 rudimentary search
Tero Marttila <terom@fixme.fi>
parents: 62
diff changeset
   239
        lines           = lines,
416560b82116 rudimentary search
Tero Marttila <terom@fixme.fi>
parents: 62
diff changeset
   240
    )
416560b82116 rudimentary search
Tero Marttila <terom@fixme.fi>
parents: 62
diff changeset
   241