2020-07-31 03:34:19 +05:30
|
|
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
2022-11-27 23:50:29 +05:30
|
|
|
// SPDX-License-Identifier: MIT
|
2020-07-31 03:34:19 +05:30
|
|
|
|
2022-11-02 14:24:36 +05:30
|
|
|
package v1_13 //nolint
|
2020-07-31 03:34:19 +05:30
|
|
|
|
|
|
|
import (
|
|
|
|
"code.gitea.io/gitea/modules/log"
|
2021-11-17 18:04:35 +05:30
|
|
|
|
2020-07-31 03:34:19 +05:30
|
|
|
"xorm.io/builder"
|
|
|
|
"xorm.io/xorm"
|
|
|
|
)
|
|
|
|
|
2022-11-02 14:24:36 +05:30
|
|
|
func UpdateMatrixWebhookHTTPMethod(x *xorm.Engine) error {
|
2021-03-15 00:22:12 +05:30
|
|
|
matrixHookTaskType := 9 // value comes from the models package
|
2020-07-31 03:34:19 +05:30
|
|
|
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
|
|
|
|
}
|