Click here to Skip to main content
15,881,044 members
Articles / Web Development / ASP.NET
Article

MCMS User Roles

Rate me:
Please Sign up or sign in to vote.
5.00/5 (14 votes)
15 Mar 20052 min read 51.8K   953   19   8
Finding MCMS user by role.

Sample Image - userroles.jpg

Introduction

MCMS API doesn't provide any way to get the user groups (role relevant) for channels/postings. It may be useful in certain places if we can get the users who have certain rights. Also, there is no way by which we can distinguish a Moderator and an Editor. So, I thought of writing a class library which can be used for this purpose.

MCMS User Roles API

  • GetAuthors - to get the author collection for a given Channel.
  • GetEditors - to get the editors collection for a given Channel.
  • GetModerators - to get the moderators collection for a given Channel.
  • GetChannelManagers - to get the channel managers collection for a given Channel.
  • GetTemplateDesigners - to get the template designers for a given Channel.
  • IsAuthor - to check whether a given person is an author.
  • IsEditor - to check whether a given person is an editor.
  • IsModerator - to check whether a given person is a moderator.
  • IsChannelManager - to check whether a given person is a channel designer.
  • IsResourceManager - to check whether a given person is a resource manager.
  • IsTemplateDesigner - to check whether a given person is a template designer.

Configuration

dataConfiguration.config file must be modified to point out the MCMS database name and server name.

XML
<parameter name="database" value="" isSensitive="false" />
<parameter name="server" value="" isSensitive="false" />

And the App.config file must contain the data which is provided with the class library.

Summary

Even though it works fine for me, please do check before using this. Because this is a direct database change, you must be very careful before using this.

XML
<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" />

N.B: Unfortunately, direct access to the MCMS database without using the MCMS publishing API breaks the Microsoft Support Boundaries for MCMS. So, if you are interested in using Microsoft Support, please don't use this.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
Singapore Singapore
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionThanks a lot Pin
Member 131794186-May-17 11:09
Member 131794186-May-17 11:09 
QuestionMCMS Pin
bala2011sg27-Jun-13 16:19
bala2011sg27-Jun-13 16:19 
QuestionHow to use this samle in a webform Pin
jrpgomes2-Nov-05 6:25
jrpgomes2-Nov-05 6:25 
AnswerRe: How to use this samle in a webform Pin
Chester Ragel7-Nov-05 5:53
Chester Ragel7-Nov-05 5:53 
GeneralRe: How to use this samle in a webform Pin
deepakbadki18-Jan-06 1:52
deepakbadki18-Jan-06 1:52 
GeneralRe: How to use this samle in a webform Pin
jedliu20466-Mar-07 20:20
jedliu20466-Mar-07 20:20 
AnswerRe: How to use this samle in a webform Pin
jedliu20466-Mar-07 20:11
jedliu20466-Mar-07 20:11 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.