Older/WebApplication/model/User.cpp

24 lines
677 B
C++
Raw Normal View History

2024-11-01 19:05:20 +08:00
#include "User.h"
#include <Wt/Dbo/Impl.h>
DBO_INSTANTIATE_TEMPLATES(User)
Wt::Dbo::dbo_traits<User>::IdType User::stringToId(const std::string &s) {
std::size_t pos = std::string::npos;
auto result = std::stoll(s, &pos);
if (pos != s.size())
return Wt::Dbo::dbo_traits<User>::invalidId();
else
return result;
}
2024-11-02 00:30:14 +08:00
Posts User::latestPosts(int count) const {
return posts.find().where("state = ?").bind(Post::Published).orderBy("date desc").limit(count);
}
Posts User::allPosts(Post::State state) const {
return posts.find().where("state = ?").bind(state).orderBy("date desc");
}
2024-11-01 19:05:20 +08:00
User::User() : role(Visitor), failedLoginAttempts(0) {
}