/usr/share/svxlink/events.d/EchoLink.tcl is in svxlink-server 14.08.1-2.
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 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 | ###############################################################################
#
# EchoLink module event handlers
#
###############################################################################
#
# This is the namespace in which all functions and variables below will exist.
# The name must match the configuration variable "NAME" in the
# [ModuleEchoLink] section in the configuration file. The name may be changed
# but it must be changed in both places.
#
namespace eval EchoLink {
#
# Check if this module is loaded in the current logic core
#
if {![info exists CFG_ID]} {
return;
}
#
# Extract the module name from the current namespace
#
set module_name [namespace tail [namespace current]];
#
# An "overloaded" playMsg that eliminates the need to write the module name
# as the first argument.
#
proc playMsg {msg} {
variable module_name;
::playMsg $module_name $msg;
}
#
# A convenience function for printing out information prefixed by the
# module name
#
proc printInfo {msg} {
variable module_name;
puts "$module_name: $msg";
}
#
# This variable is updated by the EchoLink module when a station connects or
# disconnects. It contains the number of currently connected stations.
#
variable num_connected_stations 0;
#
# Executed when this module is being activated
#
proc activating_module {} {
variable module_name;
Module::activating_module $module_name;
}
#
# Executed when this module is being deactivated.
#
proc deactivating_module {} {
variable module_name;
Module::deactivating_module $module_name;
}
#
# Executed when the inactivity timeout for this module has expired.
#
proc timeout {} {
variable module_name;
Module::timeout $module_name;
}
#
# Executed when playing of the help message for this module has been requested.
#
proc play_help {} {
variable module_name;
Module::play_help $module_name;
}
#
# Spell an EchoLink callsign
#
proc spellEchoLinkCallsign {call} {
global langdir
if [regexp {^(\w+)-L$} $call ignored callsign] {
spellWord $callsign
playSilence 50
playMsg "link"
} elseif [regexp {^(\w+)-R$} $call ignored callsign] {
spellWord $callsign
playSilence 50
playMsg "repeater"
} elseif [regexp {^\*(.+)\*$} $call ignored name] {
playMsg "conference"
playSilence 50
set lc_name [string tolower $name]
if [file exists "$langdir/EchoLink/conf-$lc_name.wav"] {
playFile "$langdir/EchoLink/conf-$lc_name.wav"
} else {
spellEchoLinkCallsign $name
}
} else {
spellWord $call
}
}
#
# Executed when a request to list all connected stations is received.
# That is, someone press DTMF "1#" when the EchoLink module is active.
#
proc list_connected_stations {connected_stations} {
playNumber [llength $connected_stations];
playSilence 50;
playMsg "connected_stations";
foreach {call} "$connected_stations" {
spellEchoLinkCallsign $call;
playSilence 250;
}
}
#
# Executed when someone tries to setup an outgoing EchoLink connection but
# the directory server is offline due to communications failure.
#
proc directory_server_offline {} {
playMsg "directory_server_offline";
}
#
# Executed when the limit for maximum number of QSOs has been reached and
# an outgoing connection request is received.
#
proc no_more_connections_allowed {} {
# FIXME: Change the message to something that makes more sense...
playMsg "link_busy";
}
#
# Executed when a status report is requested. This usually happens at
# manual identification when the user press DTMF "*".
#
proc status_report {} {
variable num_connected_stations;
variable module_name;
global active_module;
if {$active_module == $module_name} {
playNumber $num_connected_stations;
playMsg "connected_stations";
}
}
#
# Executed when an EchoLink id cannot be found in an outgoing connect request.
#
proc station_id_not_found {station_id} {
playNumber $station_id;
playMsg "not_found";
}
#
# Executed when the lookup of an EchoLink callsign fail in an outgoing connect
# request.
#
proc lookup_failed {station_id} {
playMsg "operation_failed";
}
#
# Executed when a local user tries to connect to the local node.
#
proc self_connect {} {
playMsg "operation_failed";
}
#
# Executed when a local user tries to connect to a node that is already
# connected.
#
proc already_connected_to {call} {
playMsg "already_connected_to";
playSilence 50;
spellEchoLinkCallsign $call;
}
#
# Executed when an internal error occurs.
#
proc internal_error {} {
playMsg "operation_failed";
}
#
# Executed when an outgoing connection has been requested.
#
proc connecting_to {call} {
playMsg "connecting_to";
spellEchoLinkCallsign $call;
playSilence 500;
}
#
# Executed when an EchoLink connection has been terminated
#
proc disconnected {call} {
spellEchoLinkCallsign $call;
playMsg "disconnected";
playSilence 500;
}
#
# Executed when an incoming EchoLink connection has been accepted.
#
proc remote_connected {call} {
playMsg "connected";
spellEchoLinkCallsign $call;
playSilence 500;
}
#
# Executed when an outgoing connection has been established.
#
proc connected {} {
playMsg "connected";
playSilence 500;
}
#
# Executed when the EchoLink connection has been idle for too long. The
# connection will be terminated.
#
proc link_inactivity_timeout {} {
playMsg "timeout";
}
#
# Executed when a too short connect by callsign command is received
#
proc cbc_too_short_cmd {cmd} {
spellWord $cmd;
playSilence 50;
playMsg "operation_failed";
}
#
# Executed when the connect by callsign function cannot find a match
#
proc cbc_no_match {code} {
playNumber $code;
playSilence 50;
playMsg "no_match";
}
#
# Executed when the connect by callsign list has been retrieved
#
proc cbc_list {call_list} {
playMsg "choose_station";
set idx 0;
foreach {call} $call_list {
incr idx;
playSilence 500;
playNumber $idx;
playSilence 200;
spellEchoLinkCallsign $call;
}
}
#
# Executed when the connect by callsign function is manually aborted
#
proc cbc_aborted {} {
playMsg "aborted";
}
#
# Executed when an out of range index is entered in the connect by callsign
# list
#
proc cbc_index_out_of_range {idx} {
playNumber $idx;
playSilence 50;
playMsg "idx_out_of_range";
}
#
# Executed when there are more than nine matches in the connect by
# callsign function
#
proc cbc_too_many_matches {} {
playMsg "too_many_matches";
}
#
# Executed when no station have been chosen in 60 seconds in the connect
# by callsign function
#
proc cbc_timeout {} {
playMsg "aborted";
}
#
# Executed when the disconnect by callsign list has been retrieved
#
proc dbc_list {call_list} {
playMsg "disconnect_by_callsign";
playSilence 200
playMsg "choose_station";
set idx 0;
foreach {call} $call_list {
incr idx;
playSilence 500;
playNumber $idx;
playSilence 200;
spellEchoLinkCallsign $call;
}
}
#
# Executed when the disconnect by callsign function is manually aborted
#
proc dbc_aborted {} {
playMsg "disconnect_by_callsign";
playMsg "aborted";
}
#
# Executed when an out of range index is entered in the disconnect by callsign
# list
#
proc dbc_index_out_of_range {idx} {
playNumber $idx;
playSilence 50;
playMsg "idx_out_of_range";
}
#
# Executed when no station have been chosen in 60 seconds in the disconnect
# by callsign function
#
proc dbc_timeout {} {
playMsg "disconnect_by_callsign";
playMsg "timeout";
}
#
# Executed when a local user enter the DTMF code for playing back the
# local node ID.
#
proc play_node_id {my_node_id} {
playMsg "node_id_is";
playSilence 200;
if { $my_node_id != 0} {
playNumber $my_node_id;
} else {
playMsg "unknown";
}
}
#
# Executed when an entered command failed or have bad syntax.
#
proc command_failed {cmd} {
spellWord $cmd;
playMsg "operation_failed";
}
#
# Executed when an unrecognized command has been received.
#
proc unknown_command {cmd} {
spellWord $cmd;
playMsg "unknown_command";
}
#
# Executed when the listen only feature is activated or deactivated
# status - The current status of the feature (0=deactivated, 1=activated)
# activate - The requested new status of the feature
# (0=deactivate, 1=activate)
#
proc listen_only {status activate} {
variable module_name;
if {$status == $activate} {
playMsg "listen_only";
playMsg [expr {$status ? "already_active" : "not_active"}];
} else {
puts "$module_name: [expr {$activate ? "Activating" : "Deactivating"}]\
listen only mode.";
playMsg [expr {$activate ? "activating" : "deactivating"}];
playMsg "listen_only";
}
}
#
# Executed when an outgoing connection is rejected. This can happen if
# REJECT_OUTGOING and/or ACCEPT_OUTGOING has been setup.
#
proc reject_outgoing_connection {call} {
spellEchoLinkCallsign $call;
playSilence 50;
playMsg "reject_connection";
}
#
# Executed when a transmission from an EchoLink station is starting
# or stopping
#
proc is_receiving {rx} {
if {$rx == 0} {
playTone 1000 100 100;
}
}
#
# Executed when a chat message is received from a remote station
#
# msg -- The message text
#
# WARNING: This is a slightly dangerous function since unexepected input
# may open up a security flaw. Make sure that the message string is handled
# as unknown data that can contain anything. Check it thoroughly before
# using it.
proc chat_received {msg} {
#puts $msg
}
#-----------------------------------------------------------------------------
# The events below are for remote EchoLink announcements. Sounds are not
# played over the local transmitter but are sent to the remote station.
#-----------------------------------------------------------------------------
#
# Executed when an incoming connection is accepted
#
proc remote_greeting {call} {
playSilence 1000;
playMsg "greeting";
}
#
# Executed when an incoming connection is rejected
#
proc reject_remote_connection {perm} {
playSilence 1000;
if {$perm} {
playMsg "reject_connection";
} else {
playMsg "reject_connection";
playMsg "please_try_again_later"
}
playSilence 1000;
}
#
# Executed when the inactivity timer times out
#
proc remote_timeout {} {
playMsg "timeout";
playSilence 1000;
}
#
# Executed when the squelch state changes
#
proc squelch_open {is_open} {
if {!$is_open} {
playSilence 200
playTone 1000 100 100
}
}
# end of namespace
}
#
# This file has not been truncated
#
|