Removes the old error handling library and switches to plain fmt.Errorf calls. There are several reasons for this: * There are no useful types or handling here anyways, so output format is the only priority. * Users don't care about getting stacktraces. * My emotional wellbeing. Fin de siècle.
		
			
				
	
	
		
			35 lines
		
	
	
	
		
			883 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
	
		
			883 B
		
	
	
	
		
			Go
		
	
	
	
	
	
// Copyright (C) 2016-2017  Vincent Ambo <mail@tazj.in>
 | 
						|
//
 | 
						|
// This file is part of Kontemplate.
 | 
						|
//
 | 
						|
// Kontemplate 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 3 of the License, or
 | 
						|
// (at your option) any later version.
 | 
						|
//
 | 
						|
// This file contains the implementation of a template function for retrieving
 | 
						|
// IP addresses from DNS
 | 
						|
 | 
						|
package templater
 | 
						|
 | 
						|
import (
 | 
						|
	"fmt"
 | 
						|
	"net"
 | 
						|
	"os"
 | 
						|
)
 | 
						|
 | 
						|
func GetIPsFromDNS(host string) ([]interface{}, error) {
 | 
						|
	fmt.Fprintf(os.Stderr, "Attempting to look up IP for %s in DNS\n", host)
 | 
						|
	ips, err := net.LookupIP(host)
 | 
						|
 | 
						|
	if err != nil {
 | 
						|
		return nil, fmt.Errorf("IP address lookup failed: %v", err)
 | 
						|
	}
 | 
						|
 | 
						|
	var result []interface{} = make([]interface{}, len(ips))
 | 
						|
	for i, ip := range ips {
 | 
						|
		result[i] = ip
 | 
						|
	}
 | 
						|
 | 
						|
	return result, nil
 | 
						|
}
 |