2022-01-23 16:46:30 +03:00
// Copyright 2022 The Gitea Authors. All rights reserved.
2022-11-27 21:20:29 +03:00
// SPDX-License-Identifier: MIT
2022-01-23 16:46:30 +03:00
package webhook
import (
2024-03-08 01:18:38 +03:00
"context"
"fmt"
"net/http"
2024-03-21 16:04:37 +03:00
"net/url"
2022-01-23 16:46:30 +03:00
webhook_model "code.gitea.io/gitea/models/webhook"
"code.gitea.io/gitea/modules/json"
"code.gitea.io/gitea/modules/log"
2024-03-20 17:44:01 +03:00
webhook_module "code.gitea.io/gitea/modules/webhook"
2024-03-21 16:04:37 +03:00
"code.gitea.io/gitea/services/forms"
2022-01-23 16:46:30 +03:00
)
2024-03-20 17:44:01 +03:00
type packagistHandler struct { }
func ( packagistHandler ) Type ( ) webhook_module . HookType { return webhook_module . PACKAGIST }
2024-03-21 15:23:27 +03:00
func ( packagistHandler ) FormFields ( bind func ( any ) ) FormFields {
2024-03-21 16:04:37 +03:00
var form struct {
forms . WebhookForm
Username string ` binding:"Required" `
APIToken string ` binding:"Required" `
PackageURL string ` binding:"Required;ValidUrl" `
}
bind ( & form )
return FormFields {
WebhookForm : form . WebhookForm ,
URL : fmt . Sprintf ( "https://packagist.org/api/update-package?username=%s&apiToken=%s" , url . QueryEscape ( form . Username ) , url . QueryEscape ( form . APIToken ) ) ,
ContentType : webhook_model . ContentTypeJSON ,
Secret : "" ,
HTTPMethod : http . MethodPost ,
Metadata : & PackagistMeta {
Username : form . Username ,
APIToken : form . APIToken ,
PackageURL : form . PackageURL ,
} ,
}
2024-03-21 15:23:27 +03:00
}
2022-01-23 16:46:30 +03:00
type (
2024-03-13 11:26:56 +03:00
// PackagistPayload represents a packagist payload
// as expected by https://packagist.org/about
2022-01-23 16:46:30 +03:00
PackagistPayload struct {
PackagistRepository struct {
URL string ` json:"url" `
} ` json:"repository" `
}
2023-01-01 18:23:15 +03:00
// PackagistMeta contains the metadata for the webhook
2022-01-23 16:46:30 +03:00
PackagistMeta struct {
Username string ` json:"username" `
APIToken string ` json:"api_token" `
PackageURL string ` json:"package_url" `
}
)
2024-03-20 17:44:01 +03:00
// Metadata returns packagist metadata
func ( packagistHandler ) Metadata ( w * webhook_model . Webhook ) any {
2022-01-23 16:46:30 +03:00
s := & PackagistMeta { }
if err := json . Unmarshal ( [ ] byte ( w . Meta ) , s ) ; err != nil {
2024-03-20 17:44:01 +03:00
log . Error ( "packagistHandler.Metadata(%d): %v" , w . ID , err )
2022-01-23 16:46:30 +03:00
}
return s
}
2024-03-13 11:26:56 +03:00
// newPackagistRequest creates a request with the [PackagistPayload] for packagist (same payload for all events).
2024-03-20 17:44:01 +03:00
func ( packagistHandler ) NewRequest ( ctx context . Context , w * webhook_model . Webhook , t * webhook_model . HookTask ) ( * http . Request , [ ] byte , error ) {
2024-03-08 01:18:38 +03:00
meta := & PackagistMeta { }
if err := json . Unmarshal ( [ ] byte ( w . Meta ) , meta ) ; err != nil {
2024-03-20 17:44:01 +03:00
return nil , nil , fmt . Errorf ( "packagistHandler.NewRequest meta json: %w" , err )
2024-03-08 01:18:38 +03:00
}
2024-03-13 11:26:56 +03:00
payload := PackagistPayload {
PackagistRepository : struct {
URL string ` json:"url" `
} {
URL : meta . PackageURL ,
} ,
2022-01-23 16:46:30 +03:00
}
2024-03-13 11:26:56 +03:00
return newJSONRequestWithPayload ( payload , w , t , false )
2022-01-23 16:46:30 +03:00
}