action.go 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. // Copyright 2014 The Gogs Authors. All rights reserved.
  2. // Use of this source code is governed by a MIT-style
  3. // license that can be found in the LICENSE file.
  4. package models
  5. import (
  6. "time"
  7. )
  8. // Operation types of user action.
  9. const (
  10. OP_CREATE_REPO = iota + 1
  11. OP_DELETE_REPO
  12. OP_STAR_REPO
  13. OP_FOLLOW_REPO
  14. OP_COMMIT_REPO
  15. OP_PULL_REQUEST
  16. )
  17. // An Action represents
  18. type Action struct {
  19. Id int64
  20. UserId int64 // Receiver user id.
  21. OpType int
  22. ActUserId int64 // Action user id.
  23. ActUserName string // Action user name.
  24. RepoId int64
  25. RepoName string
  26. Content string
  27. Created time.Time `xorm:"created"`
  28. }
  29. func (a Action) GetOpType() int {
  30. return a.OpType
  31. }
  32. func (a Action) GetActUserName() string {
  33. return a.ActUserName
  34. }
  35. func (a Action) GetRepoName() string {
  36. return a.RepoName
  37. }
  38. // NewRepoAction inserts action for create repository.
  39. func NewRepoAction(user *User, repo *Repository) error {
  40. _, err := orm.InsertOne(&Action{
  41. UserId: user.Id,
  42. ActUserId: user.Id,
  43. ActUserName: user.Name,
  44. OpType: OP_CREATE_REPO,
  45. RepoId: repo.Id,
  46. RepoName: repo.Name,
  47. })
  48. return err
  49. }
  50. func GetFeeds(userid, offset int64, isProfile bool) ([]Action, error) {
  51. actions := make([]Action, 0, 20)
  52. sess := orm.Limit(20, int(offset)).Desc("id").Where("user_id=?", userid)
  53. if isProfile {
  54. sess.And("act_user_id=?", userid)
  55. } else {
  56. sess.And("act_user_id!=?", userid)
  57. }
  58. err := sess.Find(&actions)
  59. return actions, err
  60. }