Sha256: 3f87bec7343cb92b498b80d8ae85a5700f725a2912806481b162a4b618155099

Contents?: true

Size: 880 Bytes

Versions: 31

Compression:

Stored size: 880 Bytes

Contents

# -*- coding: utf-8; -*-
#
# module/class Filter
#
module TDiary
	module Filter
		class Filter
			include ViewHelper

			DEBUG_NONE = 0
			DEBUG_SPAM = 1
			DEBUG_FULL = 2

			def initialize( cgi, conf )
				@cgi, @conf = cgi, conf

				if @conf.options.include?('filter.debug_mode')
					@debug_mode = @conf.options['filter.debug_mode']
				else
					@debug_mode = DEBUG_NONE
				end
			end

			def comment_filter( diary, comment )
				true
			end

			def referer_filter( referer )
				true
			end

			def debug( msg, level = DEBUG_SPAM )
				return if @debug_mode == DEBUG_NONE
				return if @debug_mode == DEBUG_SPAM and level == DEBUG_FULL

				TDiary.logger.info("#{@cgi.remote_addr}->#{(@cgi.params['date'][0] || 'no date').dump}: #{msg}")
			end
		end
	end
end

# Local Variables:
# mode: ruby
# indent-tabs-mode: t
# tab-width: 3
# ruby-indent-level: 3
# End:
# vim: ts=3

Version data entries

31 entries across 30 versions & 1 rubygems

Version Path
tdiary-4.0.0 tdiary/filter.rb
tdiary-3.2.2.20130727 tdiary/filter.rb
tdiary-3.2.2.20130722 tdiary/filter.rb
tdiary-3.2.2.20130720 tdiary/filter.rb
tdiary-3.2.2.20130617 tdiary/filter.rb
tdiary-3.2.2.20130614 tdiary/filter.rb
tdiary-3.2.2.20130604 tdiary/filter.rb
tdiary-3.2.2.20130527 tdiary/filter.rb
tdiary-3.2.2.20130518 tdiary/filter.rb
tdiary-3.2.2.20130508 tdiary/filter.rb
tdiary-3.2.2.20130507 tdiary/filter.rb