2020-07-30 22:04:19 +00:00
|
|
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
2022-11-27 18:20:29 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
2020-07-30 22:04:19 +00:00
|
|
|
|
2022-11-02 08:54:36 +00:00
|
|
|
package v1_13 //nolint
|
2020-07-30 22:04:19 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"code.gitea.io/gitea/modules/log"
|
2021-11-17 12:34:35 +00:00
|
|
|
|
2020-07-30 22:04:19 +00:00
|
|
|
"xorm.io/builder"
|
|
|
|
"xorm.io/xorm"
|
|
|
|
)
|
|
|
|
|
2022-11-02 08:54:36 +00:00
|
|
|
func UpdateMatrixWebhookHTTPMethod(x *xorm.Engine) error {
|
2021-03-14 18:52:12 +00:00
|
|
|
matrixHookTaskType := 9 // value comes from the models package
|
2020-07-30 22:04:19 +00:00
|
|
|
type Webhook struct {
|
|
|
|
HTTPMethod string
|
|
|
|
}
|
|
|
|
|
|
|
|
cond := builder.Eq{"hook_task_type": matrixHookTaskType}.And(builder.Neq{"http_method": "PUT"})
|
|
|
|
count, err := x.Where(cond).Cols("http_method").Update(&Webhook{HTTPMethod: "PUT"})
|
|
|
|
if err == nil {
|
|
|
|
log.Debug("Updated %d Matrix webhooks with http_method 'PUT'", count)
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|