mirror of https://github.com/rocboss/paopao-ce
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
389 B
20 lines
389 B
package dao
|
|
|
|
import (
|
|
"fmt"
|
|
"strings"
|
|
|
|
"github.com/rocboss/paopao-ce/internal/model"
|
|
)
|
|
|
|
func (d *dataServant) CreateAttachment(attachment *model.Attachment) (*model.Attachment, error) {
|
|
return attachment.Create(d.engine)
|
|
}
|
|
|
|
func (s *attachmentCheckServant) Check(uri string) error {
|
|
if strings.Index(uri, s.domain) != 0 {
|
|
return fmt.Errorf("附件非本站资源")
|
|
}
|
|
return nil
|
|
}
|