mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-11-04 00:11:04 +00:00 
			
		
		
		
	Before, 20px: <img width="474" alt="Screenshot 2023-09-19 at 00 10 05" src="https://github.com/go-gitea/gitea/assets/115237/4bed4edb-219d-4844-9d3c-0d747033b09f"> After, 28px: <img width="576" alt="Screenshot 2023-09-19 at 00 20 40" src="https://github.com/go-gitea/gitea/assets/115237/f482ac09-38ae-4c84-80d9-0bd39b7f9772"> Dropdown in account settings is unchanged at 20px: <img width="157" alt="Screenshot 2023-09-19 at 00 09 11" src="https://github.com/go-gitea/gitea/assets/115237/9c998cdf-eeed-4118-9262-664faaa56092"> --------- Co-authored-by: Giteabot <teabot@gitea.io>
		
			
				
	
	
		
			51 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			51 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
// Copyright 2021 The Gitea Authors. All rights reserved.
 | 
						|
// SPDX-License-Identifier: MIT
 | 
						|
 | 
						|
package oauth2
 | 
						|
 | 
						|
import (
 | 
						|
	"html/template"
 | 
						|
 | 
						|
	"code.gitea.io/gitea/modules/log"
 | 
						|
	"code.gitea.io/gitea/modules/svg"
 | 
						|
)
 | 
						|
 | 
						|
// BaseProvider represents a common base for Provider
 | 
						|
type BaseProvider struct {
 | 
						|
	name        string
 | 
						|
	displayName string
 | 
						|
}
 | 
						|
 | 
						|
// Name provides the technical name for this provider
 | 
						|
func (b *BaseProvider) Name() string {
 | 
						|
	return b.name
 | 
						|
}
 | 
						|
 | 
						|
// DisplayName returns the friendly name for this provider
 | 
						|
func (b *BaseProvider) DisplayName() string {
 | 
						|
	return b.displayName
 | 
						|
}
 | 
						|
 | 
						|
// IconHTML returns icon HTML for this provider
 | 
						|
func (b *BaseProvider) IconHTML(size int) template.HTML {
 | 
						|
	svgName := "gitea-" + b.name
 | 
						|
	switch b.name {
 | 
						|
	case "gplus":
 | 
						|
		svgName = "gitea-google"
 | 
						|
	case "github":
 | 
						|
		svgName = "octicon-mark-github"
 | 
						|
	}
 | 
						|
	svgHTML := svg.RenderHTML(svgName, size, "gt-mr-3")
 | 
						|
	if svgHTML == "" {
 | 
						|
		log.Error("No SVG icon for oauth2 provider %q", b.name)
 | 
						|
		svgHTML = svg.RenderHTML("gitea-openid", size, "gt-mr-3")
 | 
						|
	}
 | 
						|
	return svgHTML
 | 
						|
}
 | 
						|
 | 
						|
// CustomURLSettings returns the custom url settings for this provider
 | 
						|
func (b *BaseProvider) CustomURLSettings() *CustomURLSettings {
 | 
						|
	return nil
 | 
						|
}
 | 
						|
 | 
						|
var _ Provider = &BaseProvider{}
 |