mirror of
				https://github.com/Icinga/icinga2.git
				synced 2025-11-04 05:34:12 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			81 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			81 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
/******************************************************************************
 | 
						|
 * Icinga 2                                                                   *
 | 
						|
 * Copyright (C) 2012-2017 Icinga Development Team (https://www.icinga.com/)  *
 | 
						|
 *                                                                            *
 | 
						|
 * This program is free software; you can redistribute it and/or              *
 | 
						|
 * modify it under the terms of the GNU General Public License                *
 | 
						|
 * as published by the Free Software Foundation; either version 2             *
 | 
						|
 * of the License, or (at your option) any later version.                     *
 | 
						|
 *                                                                            *
 | 
						|
 * This program is distributed in the hope that it will be useful,            *
 | 
						|
 * but WITHOUT ANY WARRANTY; without even the implied warranty of             *
 | 
						|
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the              *
 | 
						|
 * GNU General Public License for more details.                               *
 | 
						|
 *                                                                            *
 | 
						|
 * 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 St, Fifth Floor, Boston, MA 02110-1301, USA.             *
 | 
						|
 ******************************************************************************/
 | 
						|
 | 
						|
#include "remote/zone.hpp"
 | 
						|
#include "remote/apilistener.hpp"
 | 
						|
#include "base/configtype.hpp"
 | 
						|
#include "base/utility.hpp"
 | 
						|
 | 
						|
using namespace icinga;
 | 
						|
 | 
						|
void ApiListener::UpdateObjectAuthority(void)
 | 
						|
{
 | 
						|
	Zone::Ptr my_zone = Zone::GetLocalZone();
 | 
						|
 | 
						|
	std::vector<Endpoint::Ptr> endpoints;
 | 
						|
	Endpoint::Ptr my_endpoint;
 | 
						|
 | 
						|
	if (my_zone) {
 | 
						|
		my_endpoint = Endpoint::GetLocalEndpoint();
 | 
						|
 | 
						|
		int num_total = 0;
 | 
						|
 | 
						|
		for (const Endpoint::Ptr& endpoint : my_zone->GetEndpoints()) {
 | 
						|
			num_total++;
 | 
						|
 | 
						|
			if (endpoint != my_endpoint && !endpoint->GetConnected())
 | 
						|
				continue;
 | 
						|
 | 
						|
			endpoints.push_back(endpoint);
 | 
						|
		}
 | 
						|
 | 
						|
		double mainTime = Application::GetMainTime();
 | 
						|
 | 
						|
		if (num_total > 1 && endpoints.size() <= 1 && (mainTime == 0 || Utility::GetTime() - mainTime < 60))
 | 
						|
			return;
 | 
						|
 | 
						|
		std::sort(endpoints.begin(), endpoints.end(),
 | 
						|
			[](const ConfigObject::Ptr& a, const ConfigObject::Ptr& b) {
 | 
						|
				return a->GetName() < b->GetName();
 | 
						|
			}
 | 
						|
		);
 | 
						|
	}
 | 
						|
 | 
						|
	for (const Type::Ptr& type : Type::GetAllTypes()) {
 | 
						|
		ConfigType *dtype = dynamic_cast<ConfigType *>(type.get());
 | 
						|
 | 
						|
		if (!dtype)
 | 
						|
			continue;
 | 
						|
 | 
						|
		for (const ConfigObject::Ptr& object : dtype->GetObjects()) {
 | 
						|
			if (!object->IsActive() || object->GetHAMode() != HARunOnce)
 | 
						|
				continue;
 | 
						|
 | 
						|
			bool authority;
 | 
						|
 | 
						|
			if (!my_zone)
 | 
						|
				authority = true;
 | 
						|
			else
 | 
						|
				authority = endpoints[Utility::SDBM(object->GetName()) % endpoints.size()] == my_endpoint;
 | 
						|
 | 
						|
			object->SetAuthority(authority);
 | 
						|
		}
 | 
						|
	}
 | 
						|
}
 |