This file is indexed.

/usr/share/weechat/ruby/input_lock.rb is in weechat-scripts 20111030-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
# vim: set noet nosta sw=4 ts=4 :
#
# Mahlon E. Smith <mahlon@martini.nu>
# http://www.martini.nu/
# (See below for LICENSE.)
#
# Input Lock
# ----------
#
# Global toggle for disabling text input.  Commands are still allowed.
# This is a simple "don't look stupid" protector, if you're entering
# text and don't realize your focus is on the wrong window.  ;)
#
#
# Install instructions:
# ---------------------
#
#   Load into Weechat like any other plugin, after putting it into
#   your ~/.weechat/ruby directory:
#
#        /ruby load input_lock.rb
#
#   It's strongly recommended to make some keybindings to easily toggle
#   the state of the lock.  Here's what I use:  ('i' for input!)
#
#        /key bind meta-i /set plugins.var.ruby.input_lock.enabled off
#        /key bind meta-I /set plugins.var.ruby.input_lock.enabled on
#
#   You can add notification of the current state by adding '[il]' to
#   your weechat.bar.input.items.
#
#
# Options:
# --------
#
#   plugins.var.ruby.input_lock.enable
#
#       The state of the lock.
#       Default: "off"
#


### Convenience 'truth' module for Weechat config strings.
###
module Truthy
	def true?
		return Weechat.config_string_to_boolean( self.to_s ).to_i.zero? ? false : true
	end
end


### The Weechat plugin.
###
class InputLock
	include Weechat

	DEBUG = false

	SIGNATURE = [
		'input_lock',
		'Mahlon E. Smith',
		'0.1',
		'BSD',
		'Reject all text input, to avoid accidental public stupidity.',
		'',
		''
	]

	DEFAULT_OPTIONS = {
		:enabled => 'off'
	}


	### Prepare configuration.
	###
	def initialize
		DEFAULT_OPTIONS.each_pair do |option, value|

			# install default options if needed.
			#
			if Weechat.config_is_set_plugin( option.to_s ).zero?
				self.print_info "Setting value '%s' to %p" % [ option, value ] if DEBUG
				Weechat.config_set_plugin( option.to_s, value.to_s )
			end

			# read in existing config values, attaching
			# them to instance variables.
			#
			val = Weechat.config_get_plugin( option.to_s )
			val.extend( Truthy )
			instance_variable_set( "@#{option}".to_sym, val )
			self.class.send( :attr, option.to_sym, true )
		end

		Weechat.bar_item_new( 'il', 'il_bar_item', '' )
	end


	########################################################################
	### W E E C H A T   H O O K S
	########################################################################

	### Validate values for config changes, and take appropriate action
	### on any changes that immediately require it.
	###
	### (This is overcomplex for the single 'enable toggle' case, but
	### leaving the logic in place on the likely chance there will be
	### added future options.)
	###
	def config_changed( data, option, new_value )
		option = option.match( /\.(\w+)$/ )[1]
		new_value.extend( Truthy )

		case option
			when 'enabled'
				self.enabled = new_value
				self.update_bar
				self.print_info "Setting enabled to %p" % [ new_value ] if DEBUG
		end

		return WEECHAT_RC_OK
	end


	### Decide whether or not to allow entered text into the input buffer.
	###
	def input_lock( data, modifier, buffer, string )
		# do nothing if not enabled
		return string unless self.enabled.true?

		# text in the weechat buffer is always allowed
		buf_plugin = Weechat.buffer_get_string( buffer, "localvar_plugin" );
		buf_name   = Weechat.buffer_get_string( buffer, "localvar_name" );
		return string if buf_plugin == 'core' && buf_name == 'weechat'

		go_running = Weechat.info_get( "go_running", "" );
		return string if go_running == '1'

		# allow commands to get through, everything else is squashed!
		return string.index('/').nil? ? '' : string
	end


	### Refresh the lock state in the input bar.
	###
	def update_bar( data=nil, item=nil, window=nil )
		Weechat.bar_item_update( 'il' )
		return WEECHAT_RC_OK
	end

	### The content of the 'il' bar item.
	###
	def il_bar_item( data, item, window )
		return self.enabled.true? ?
			Weechat.color('red') + 'LOCK' + Weechat.color('') :
			''
	end


	#########
	protected
	#########

	### Quick wrapper for sending info messages to the weechat main buffer.
	###
	def print_info( msg )
		Weechat.print '', "%sLOCK\t%s" % [
			Weechat.color('yellow'),
			msg
		]
	end
end



### Weechat entry point.
###
def weechat_init
	Weechat::register *InputLock::SIGNATURE
	$lock = InputLock.new
	Weechat.hook_signal( 'input_text_changed', 'update_bar', '' )
	Weechat.hook_signal( 'buffer_switch', 'update_bar', '' )
	Weechat.hook_modifier( 'input_text_content', 'input_lock', '' )
	Weechat.hook_config( 'plugins.var.ruby.input_lock.*', 'config_changed', '' )
	return Weechat::WEECHAT_RC_OK
end


### Allow Weechat namespace callbacks to forward to the InputLock object.
###
require 'forwardable'
extend Forwardable
def_delegators :$lock, :config_changed, :input_lock, :update_bar, :il_bar_item


__END__
__LICENSE__

Copyright (c) 2011, Mahlon E. Smith <mahlon@martini.nu>

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, nor the names of contributors may be used to
      endorse or promote products derived from this software without specific prior
      written permission.

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.