Page Menu
Home
Musing Studio
Search
Configure Global Search
Log In
Files
F10528898
category.go
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
784 B
Subscribers
None
category.go
View Options
// Package category supports post categories
package
category
import
(
"errors"
"github.com/writeas/slug"
)
var
(
ErrNotFound
=
errors
.
New
(
"category doesn't exist"
)
)
// Category represents a post tag with additional metadata, like a title and slug.
type
Category
struct
{
ID
int64
`json:"-"`
Hashtag
string
`json:"hashtag"`
Slug
string
`json:"slug"`
Title
string
`json:"title"`
}
// NewCategory creates a Category you can insert into the database, based on a hashtag. It automatically breaks up the
// hashtag by words, based on capitalization, for both the title and a URL-friendly slug.
func
NewCategory
(
hashtag
string
)
*
Category
{
title
:=
titleFromHashtag
(
hashtag
)
return
&
Category
{
Hashtag
:
hashtag
,
Slug
:
slug
.
Make
(
title
),
Title
:
title
,
}
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sun, Apr 6, 5:43 AM (6 h, 43 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3188788
Attached To
rWC Write.as Web Core
Event Timeline
Log In to Comment