基於mysql的bbs設計(三)

來源:互聯網
上載者:User

4。使用者模組設計
對於底層資料庫,調用mysql的C API函數來進行資料庫的修改,內部儲存
一定的狀態變數(例如使用者名稱,還是留給上一層完成?),對上一層,則提供
使用者管理的介面。
Class UserManage {
private:
char myuserid[20]; // 使用者的id,未登陸前為空白
time logintime; // 使用者登陸時間,並用於計算停留時間
char loginhost[20]; //上站地點。

public:
int NewUser( char *userid, char *passwd );
建立一個使用者,判斷是否已經有,其他資料暫時為空白,
firstlogintime,許可權等設預設值。
int UserLogin( char *userid, char *passwd );
使用者登陸,驗證密碼,
int ChangePasswd( char *oldpasswd, char *newpasswd );
修改密碼,要求原密碼一致。
int ChangePriData( char *newname, char *newemail,
char *newaddr );
改變基本資料,泥稱,email,住址。。。。
int ModifyNumData( int addlogin, int addpost );
修改文章數,上站次數,等資料。。。。注意調用對象。
int UserLogout();
使用者退出,修改lastlogin,staytime,loginhost等

// 普通查詢命令
int QueryCommonData( const char * userid, int& loginnum,
char * username, int& postnum,
time& lastlogin, char *lasthost );
查詢網友基本資料。

// 特權指令,函數在完成功能前,先判斷許可權。
int QueryPriData( const char * userid, char *email,
char *addr );
查詢基本資料,普通人只能查自己,有特權才能查其他人。
int ModifyUserLevel( BOOL isAdd, unsigned long level );
修改使用者的許可權,
int ModifyUserId( char *oldid, char *newid );
char *newemail, char *newaddr );
修改使用者的基本資料。
int ModifyUserNumdata( char *userid, int addlogin, int addpost );
修改使用者的文章數等資料。
int ModifyUserPasswd( char *userid, char *newpasswd );
修改使用者的密碼。
}
以上各個函數難度不大,都是執行相應的sql語句,訪問mysql資料庫,
是否將一般指令歸到特權指令中去呢?許可權的檢查,是放在這一層還是上一層?
這更多的是看考慮的著重點,是看程式的清晰性還是代碼的簡練,可能還是
看代碼吧,畢竟要考慮訪問量,另外,上層服務層是否也應該考慮許可權檢查
問題呢?

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.