mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-10-31 06:21:11 +00:00 
			
		
		
		
	- Massive replacement of changing `code.gitea.io/gitea` to `forgejo.org`. - Resolves forgejo/discussions#258 Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/7337 Reviewed-by: Earl Warren <earl-warren@noreply.codeberg.org> Reviewed-by: Michael Kriese <michael.kriese@gmx.de> Reviewed-by: Beowulf <beowulf@beocode.eu> Reviewed-by: Panagiotis "Ivory" Vasilopoulos <git@n0toose.net> Co-authored-by: Gusted <postmaster@gusted.xyz> Co-committed-by: Gusted <postmaster@gusted.xyz>
		
			
				
	
	
		
			113 lines
		
	
	
	
		
			3 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			113 lines
		
	
	
	
		
			3 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright 2021 The Gitea Authors. All rights reserved.
 | |
| // SPDX-License-Identifier: MIT
 | |
| 
 | |
| package maven
 | |
| 
 | |
| import (
 | |
| 	"encoding/xml"
 | |
| 	"io"
 | |
| 
 | |
| 	"forgejo.org/modules/util"
 | |
| 	"forgejo.org/modules/validation"
 | |
| 
 | |
| 	"golang.org/x/net/html/charset"
 | |
| )
 | |
| 
 | |
| // Metadata represents the metadata of a Maven package
 | |
| type Metadata struct {
 | |
| 	GroupID      string        `json:"group_id,omitempty"`
 | |
| 	ArtifactID   string        `json:"artifact_id,omitempty"`
 | |
| 	Name         string        `json:"name,omitempty"`
 | |
| 	Description  string        `json:"description,omitempty"`
 | |
| 	ProjectURL   string        `json:"project_url,omitempty"`
 | |
| 	Licenses     []string      `json:"licenses,omitempty"`
 | |
| 	Dependencies []*Dependency `json:"dependencies,omitempty"`
 | |
| }
 | |
| 
 | |
| // Dependency represents a dependency of a Maven package
 | |
| type Dependency struct {
 | |
| 	GroupID    string `json:"group_id,omitempty"`
 | |
| 	ArtifactID string `json:"artifact_id,omitempty"`
 | |
| 	Version    string `json:"version,omitempty"`
 | |
| }
 | |
| 
 | |
| type pomStruct struct {
 | |
| 	XMLName     xml.Name `xml:"project"`
 | |
| 	GroupID     string   `xml:"groupId"`
 | |
| 	ArtifactID  string   `xml:"artifactId"`
 | |
| 	Version     string   `xml:"version"`
 | |
| 	Name        string   `xml:"name"`
 | |
| 	Description string   `xml:"description"`
 | |
| 	URL         string   `xml:"url"`
 | |
| 	Licenses    []struct {
 | |
| 		Name         string `xml:"name"`
 | |
| 		URL          string `xml:"url"`
 | |
| 		Distribution string `xml:"distribution"`
 | |
| 	} `xml:"licenses>license"`
 | |
| 	Dependencies []struct {
 | |
| 		GroupID    string `xml:"groupId"`
 | |
| 		ArtifactID string `xml:"artifactId"`
 | |
| 		Version    string `xml:"version"`
 | |
| 		Scope      string `xml:"scope"`
 | |
| 	} `xml:"dependencies>dependency"`
 | |
| 	Parent struct {
 | |
| 		GroupID      string `xml:"groupId"`
 | |
| 		ArtifactID   string `xml:"artifactId"`
 | |
| 		Version      string `xml:"version"`
 | |
| 		RelativePath string `xml:"relativePath"`
 | |
| 	} `xml:"parent"`
 | |
| }
 | |
| 
 | |
| var ErrNoGroupID = util.NewInvalidArgumentErrorf("group ID is missing")
 | |
| 
 | |
| // ParsePackageMetaData parses the metadata of a pom file
 | |
| func ParsePackageMetaData(r io.Reader) (*Metadata, error) {
 | |
| 	var pom pomStruct
 | |
| 
 | |
| 	dec := xml.NewDecoder(r)
 | |
| 	dec.CharsetReader = charset.NewReaderLabel
 | |
| 	if err := dec.Decode(&pom); err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 
 | |
| 	if !validation.IsValidURL(pom.URL) {
 | |
| 		pom.URL = ""
 | |
| 	}
 | |
| 
 | |
| 	groupID := pom.GroupID
 | |
| 
 | |
| 	if groupID == "" {
 | |
| 		// If a project inherits from a parent project, the groupId element is optional.
 | |
| 		// Refer to: https://maven.apache.org/pom.html#Inheritance
 | |
| 		if pom.Parent.GroupID == "" {
 | |
| 			return nil, ErrNoGroupID
 | |
| 		}
 | |
| 		groupID = pom.Parent.GroupID
 | |
| 	}
 | |
| 
 | |
| 	licenses := make([]string, 0, len(pom.Licenses))
 | |
| 	for _, l := range pom.Licenses {
 | |
| 		if l.Name != "" {
 | |
| 			licenses = append(licenses, l.Name)
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	dependencies := make([]*Dependency, 0, len(pom.Dependencies))
 | |
| 	for _, d := range pom.Dependencies {
 | |
| 		dependencies = append(dependencies, &Dependency{
 | |
| 			GroupID:    d.GroupID,
 | |
| 			ArtifactID: d.ArtifactID,
 | |
| 			Version:    d.Version,
 | |
| 		})
 | |
| 	}
 | |
| 
 | |
| 	return &Metadata{
 | |
| 		GroupID:      groupID,
 | |
| 		ArtifactID:   pom.ArtifactID,
 | |
| 		Name:         pom.Name,
 | |
| 		Description:  pom.Description,
 | |
| 		ProjectURL:   pom.URL,
 | |
| 		Licenses:     licenses,
 | |
| 		Dependencies: dependencies,
 | |
| 	}, nil
 | |
| }
 |