mirror of https://github.com/knative/pkg.git
				
				
				
			
		
			
				
	
	
		
			74 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Go
		
	
	
	
			
		
		
	
	
			74 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Go
		
	
	
	
/*
 | 
						|
Copyright 2019 The Knative Authors
 | 
						|
 | 
						|
Licensed under the Apache License, Version 2.0 (the "License");
 | 
						|
you may not use this file except in compliance with the License.
 | 
						|
You may obtain a copy of the License at
 | 
						|
 | 
						|
    http://www.apache.org/licenses/LICENSE-2.0
 | 
						|
 | 
						|
Unless required by applicable law or agreed to in writing, software
 | 
						|
distributed under the License is distributed on an "AS IS" BASIS,
 | 
						|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 | 
						|
See the License for the specific language governing permissions and
 | 
						|
limitations under the License.
 | 
						|
*/
 | 
						|
 | 
						|
package apis
 | 
						|
 | 
						|
import (
 | 
						|
	"encoding/json"
 | 
						|
	"fmt"
 | 
						|
	"net/url"
 | 
						|
)
 | 
						|
 | 
						|
// URL is an alias of url.URL.
 | 
						|
// It has custom json marshal methods that enable it to be used in K8s CRDs
 | 
						|
// such that the CRD resource will have the URL but operator code can can work with url.URL struct
 | 
						|
type URL url.URL
 | 
						|
 | 
						|
// ParseURL attempts to parse the given string as a URL.
 | 
						|
func ParseURL(u string) (*URL, error) {
 | 
						|
	if u == "" {
 | 
						|
		return nil, nil
 | 
						|
	}
 | 
						|
	pu, err := url.Parse(u)
 | 
						|
	if err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	return (*URL)(pu), nil
 | 
						|
}
 | 
						|
 | 
						|
// MarshalJSON implements a custom json marshal method used when this type is
 | 
						|
// marshaled using json.Marshal.
 | 
						|
// json.Marshaler impl
 | 
						|
func (u URL) MarshalJSON() ([]byte, error) {
 | 
						|
	b := fmt.Sprintf("%q", u.String())
 | 
						|
	return []byte(b), nil
 | 
						|
}
 | 
						|
 | 
						|
// UnmarshalJSON implements the json unmarshal method used when this type is
 | 
						|
// unmarsheled using json.Unmarshal.
 | 
						|
// json.Unmarshaler impl
 | 
						|
func (u *URL) UnmarshalJSON(b []byte) error {
 | 
						|
	var ref string
 | 
						|
	if err := json.Unmarshal(b, &ref); err != nil {
 | 
						|
		return err
 | 
						|
	}
 | 
						|
	r, err := ParseURL(ref)
 | 
						|
	if err != nil {
 | 
						|
		return err
 | 
						|
	}
 | 
						|
	*u = *r
 | 
						|
	return nil
 | 
						|
}
 | 
						|
 | 
						|
// String returns the full string representation of the URL.
 | 
						|
func (u *URL) String() string {
 | 
						|
	if u == nil {
 | 
						|
		return ""
 | 
						|
	}
 | 
						|
	uu := url.URL(*u)
 | 
						|
	return uu.String()
 | 
						|
}
 |