Merge pull request '[gitea] week 2024-27 cherry pick (gitea/main -> forgejo)' (#4266) from earl-warren/wcp/2024-27 into forgejo
Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/4266 Reviewed-by: twenty-panda <twenty-panda@noreply.codeberg.org>
This commit is contained in:
commit
c7bb90bc6b
|
@ -287,13 +287,14 @@ type UserIDCount struct {
|
||||||
Count int64
|
Count int64
|
||||||
}
|
}
|
||||||
|
|
||||||
// GetUIDsAndNotificationCounts between the two provided times
|
// GetUIDsAndNotificationCounts returns the unread counts for every user between the two provided times.
|
||||||
|
// It must return all user IDs which appear during the period, including count=0 for users who have read all.
|
||||||
func GetUIDsAndNotificationCounts(ctx context.Context, since, until timeutil.TimeStamp) ([]UserIDCount, error) {
|
func GetUIDsAndNotificationCounts(ctx context.Context, since, until timeutil.TimeStamp) ([]UserIDCount, error) {
|
||||||
sql := `SELECT user_id, count(*) AS count FROM notification ` +
|
sql := `SELECT user_id, sum(case when status= ? then 1 else 0 end) AS count FROM notification ` +
|
||||||
`WHERE user_id IN (SELECT user_id FROM notification WHERE updated_unix >= ? AND ` +
|
`WHERE user_id IN (SELECT user_id FROM notification WHERE updated_unix >= ? AND ` +
|
||||||
`updated_unix < ?) AND status = ? GROUP BY user_id`
|
`updated_unix < ?) GROUP BY user_id`
|
||||||
var res []UserIDCount
|
var res []UserIDCount
|
||||||
return res, db.GetEngine(ctx).SQL(sql, since, until, NotificationStatusUnread).Find(&res)
|
return res, db.GetEngine(ctx).SQL(sql, NotificationStatusUnread, since, until).Find(&res)
|
||||||
}
|
}
|
||||||
|
|
||||||
// SetIssueReadBy sets issue to be read by given user.
|
// SetIssueReadBy sets issue to be read by given user.
|
||||||
|
|
|
@ -180,6 +180,10 @@ func (c *HTTPClient) performOperation(ctx context.Context, objects []Pointer, dc
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
link, ok := object.Actions["download"]
|
link, ok := object.Actions["download"]
|
||||||
|
if !ok {
|
||||||
|
// no actions block in response, try legacy response schema
|
||||||
|
link, ok = object.Links["download"]
|
||||||
|
}
|
||||||
if !ok {
|
if !ok {
|
||||||
log.Debug("%+v", object)
|
log.Debug("%+v", object)
|
||||||
return errors.New("missing action 'download'")
|
return errors.New("missing action 'download'")
|
||||||
|
|
|
@ -59,6 +59,17 @@ func lfsTestRoundtripHandler(req *http.Request) *http.Response {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
} else if strings.Contains(url, "legacy-batch-request-download") {
|
||||||
|
batchResponse = &BatchResponse{
|
||||||
|
Transfer: "dummy",
|
||||||
|
Objects: []*ObjectResponse{
|
||||||
|
{
|
||||||
|
Links: map[string]*Link{
|
||||||
|
"download": {},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
} else if strings.Contains(url, "valid-batch-request-upload") {
|
} else if strings.Contains(url, "valid-batch-request-upload") {
|
||||||
batchResponse = &BatchResponse{
|
batchResponse = &BatchResponse{
|
||||||
Transfer: "dummy",
|
Transfer: "dummy",
|
||||||
|
@ -229,6 +240,11 @@ func TestHTTPClientDownload(t *testing.T) {
|
||||||
endpoint: "https://unknown-actions-map.io",
|
endpoint: "https://unknown-actions-map.io",
|
||||||
expectederror: "missing action 'download'",
|
expectederror: "missing action 'download'",
|
||||||
},
|
},
|
||||||
|
// case 11
|
||||||
|
{
|
||||||
|
endpoint: "https://legacy-batch-request-download.io",
|
||||||
|
expectederror: "",
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
for n, c := range cases {
|
for n, c := range cases {
|
||||||
|
|
|
@ -47,6 +47,7 @@ type BatchResponse struct {
|
||||||
type ObjectResponse struct {
|
type ObjectResponse struct {
|
||||||
Pointer
|
Pointer
|
||||||
Actions map[string]*Link `json:"actions,omitempty"`
|
Actions map[string]*Link `json:"actions,omitempty"`
|
||||||
|
Links map[string]*Link `json:"_links,omitempty"`
|
||||||
Error *ObjectError `json:"error,omitempty"`
|
Error *ObjectError `json:"error,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
- add support for LFS server implementations which have batch API responses in an older/deprecated schema
|
Loading…
Reference in New Issue