kanbanworkflowstimelinescrumrubyroadmapproject-planningproject-managementopenprojectangularissue-trackerifcgantt-chartganttbug-trackerboardsbcf
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.9 KiB
57 lines
1.9 KiB
11 years ago
|
#-- copyright
|
||
|
# OpenProject is a project management system.
|
||
|
# Copyright (C) 2014 the OpenProject Foundation (OPF)
|
||
|
#
|
||
|
# This program is free software; you can redistribute it and/or
|
||
|
# modify it under the terms of the GNU General Public License version 3.
|
||
|
#
|
||
|
# You should have received a copy of the GNU General Public License
|
||
|
# along with this program; if not, write to the Free Software
|
||
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||
|
#
|
||
|
# See doc/COPYRIGHT.md for more details.
|
||
|
#++
|
||
|
|
||
11 years ago
|
module OpenProject
|
||
|
module Webhooks
|
||
|
require "open_project/webhooks/engine"
|
||
|
require "open_project/webhooks/hook"
|
||
|
|
||
|
@@registered_hooks = []
|
||
|
|
||
|
##
|
||
|
# Returns a list of currently active webhooks.
|
||
|
def self.registered_hooks
|
||
|
@@registered_hooks.dup
|
||
|
end
|
||
|
|
||
|
##
|
||
11 years ago
|
# Registers a webhook having name and a callback.
|
||
11 years ago
|
# The name will be part of the webhook-url and may be used to unregister a webhook later.
|
||
|
# The callback is executed with two parameters when the webhook was called.
|
||
|
# The parameters are the hook object, an environment-variables hash and a params hash of the current request.
|
||
|
# The callback may return an Integer, which is interpreted as a http return code.
|
||
|
#
|
||
|
# Returns the newly created hook
|
||
|
def self.register_hook(name, &callback)
|
||
|
raise "A hook named '#{name}' is already registered!" if find(name)
|
||
|
Rails.logger.warn "hook registered"
|
||
|
hook = Hook.new(name, &callback)
|
||
|
@@registered_hooks << hook
|
||
|
hook
|
||
|
end
|
||
|
|
||
|
# Unregisters a webhook. Might be usefull for tests only, because routes can not
|
||
|
# be redrawn in a running instance
|
||
|
def self.unregister_hook(name)
|
||
|
hook = find(name)
|
||
|
raise "A hook named '#{name}' was not registered!" unless find(name)
|
||
|
@@registered_hooks.delete hook
|
||
|
end
|
||
|
|
||
|
def self.find(name)
|
||
|
@@registered_hooks.find {|h| h.name == name}
|
||
|
end
|
||
|
end
|
||
|
end
|