GupShup.html.dynamic.groupOwnerDetails = {};
GupShup.html.dynamic.groupOwnerDetails.vars = {};
GupShup.html.dynamic.groupOwnerDetails.vars.entityDetails = {};
GupShup.html.dynamic.groupOwnerDetails.vars.webarooUserDetails = {};
GupShup.html.dynamic.groupOwnerDetails.vars.loggedInUserId = -1;
GupShup.html.dynamic.groupOwnerDetails.vars.groupOwnerUserId = -1;
GupShup.html.dynamic.groupOwnerDetails.methods = {};
GupShup.html.dynamic.groupOwnerDetails.methods = {
updateForEntityDetails : function (htmlContent)
{
var status = false;
var entityDetails = GupShup.html.dynamic.groupOwnerDetails.vars.entityDetails;
if((typeof(entityDetails) == 'object') && (typeof(entityDetails.status) != 'undefined') && (entityDetails.status == 'SUCCESS'))
{
var map = [{key:'$ENTITY_NAME$', dataMember: 'name'}];
htmlContent.content = GupShup.util.expandTemplate(htmlContent.content, map, entityDetails.info);
status = true;
}
return status;
},
updateForWebarooUserDetails : function(htmlContent)
{
var status = false;
var webarooUserDetails = GupShup.html.dynamic.groupOwnerDetails.vars.webarooUserDetails;
if((typeof(webarooUserDetails) == 'object') && (typeof(webarooUserDetails.status) != 'undefined') && (webarooUserDetails.status == 'SUCCESS'))
{
if(GupShup.util.trim(webarooUserDetails.info[0].profileName) == "")
{
webarooUserDetails.info[0].profileName = 'anonymous';
}
var map =
[
{key:'http://resource.smsgupshup.com/webimages/$WEBAROO_USER_IMG_SRC$.jpg', dataMember: 'imageUrl'},
{key:'$PROFILE_NAME$', dataMember: 'profileName'},
{key:'$USER_AGE$', dataMember: 'age'},
{key:'$USER_ID$', dataMember: 'id'}
];
htmlContent.content = GupShup.util.expandTemplate(htmlContent.content, map, webarooUserDetails.info);
GupShup.html.dynamic.groupOwnerDetails.vars.groupOwnerUserId = webarooUserDetails.info[0].id;
status = true;
}
return status;
},
updateDetails : function()
{
var innerHTML = GupShup.util.getInnerHTML('groupOwnerDetailsJsp_webarooUserDetailsTemplate_RIGHT');
var htmlContent = {'content': innerHTML};
var entityDetails = GupShup.html.dynamic.groupOwnerDetails.vars.entityDetails;
var webarooUserDetails = GupShup.html.dynamic.groupOwnerDetails.vars.webarooUserDetails;
if(GupShup.html.dynamic.groupOwnerDetails.methods.updateForEntityDetails(htmlContent, entityDetails)
&& GupShup.html.dynamic.groupOwnerDetails.methods.updateForWebarooUserDetails(htmlContent, webarooUserDetails))
{
GupShup.util.setInnerHTML('groupOwnerDetailsJsp_webarooUserDetailsContainerRIGHT', htmlContent.content);
var ageId = 'groupOwnerDetailsJsp_AgeDiv_RIGHT_' + webarooUserDetails.info[0].id;
if(webarooUserDetails.info[0].displayAge && (webarooUserDetails.info[0].age > 0))
GupShup.html.util.showElement(ageId);
else
GupShup.html.util.hideElement(ageId);
/* Check if we have a valid logged in user and the current group owner is same as the logged in user. */
var sendMessageDivId = 'sendMessageDiv_' + GupShup.html.dynamic.groupOwnerDetails.vars.groupOwnerUserId;
if ((GupShup.html.dynamic.groupOwnerDetails.vars.groupOwnerUserId > 0)
&& (GupShup.html.dynamic.groupOwnerDetails.vars.groupOwnerUserId == GupShup.html.dynamic.groupOwnerDetails.vars.loggedInUserId))
{
GupShup.html.util.hideElement(sendMessageDivId);
}
else
{
GupShup.html.util.showElement(sendMessageDivId);
}
GupShup.html.util.showElement('groupOwnerDetailsJsp_webarooUserDetailsContainerRIGHT');
}
else
{
GupShup.html.util.hideElement('groupOwnerDetailsJsp_webarooUserDetailsContainerRIGHT');
}
},
initPage : function()
{
var webarooUserDetailsJSONStr = '{"info":[{"gender":"FEMALE","age":21,"imageUrl":"http://resource2.smsgupshup.com/webimages/profile/0/451/451529_1229583554633.png","profileName":"Mahek","displayAge":true,"description":" ","location":"Bangalore","id":451529}],"params":{"limit":-1,"start":0,"type":"USER_INFO","infoType":"WEBAROOUSER","needTotalForPg":true,"entityId":"2797044"},"message":"","totalForPg":1,"status":"SUCCESS","errorCode":"NO_ERROR"}';
var entityDetailsJsonStr = '{"info":[{"isDefault":"false","totalSubscribers":21578,"imageUrl":"http://resource2.smsgupshup.com/webimages/entity/2/797/2797044_1229583599124.png","totalPosts":362,"userId":2797068,"isPremium":false,"isPrivate":false,"status":"ENABLED","id":2797044,"description":"To Get d Most SEXXY, YUMMY,HOT,EROTIC msgs 4 FREE on ur Mobile, Snd&#59; JOIN HOTXXX to 567678. > For Romantic Msgz, JOIN Mahek85 to 567678 ","groupUrl":"http://www.smsgupshup.com/groups/MASALA69","name":"MASALA69","isPartner":false,"orgName":"MASALA69"}],"params":{"limit":-1,"start":0,"type":"USER_INFO","infoType":"SMSENTITY","needTotalForPg":true,"entityId":"2797044"},"message":"","totalForPg":1,"status":"SUCCESS","errorCode":"NO_ERROR"}';
GupShup.html.dynamic.groupOwnerDetails.vars.entityDetails = GupShup.util.getJsonFromResponse(entityDetailsJsonStr);
GupShup.html.dynamic.groupOwnerDetails.vars.webarooUserDetails = GupShup.util.getJsonFromResponse(webarooUserDetailsJSONStr);
GupShup.html.dynamic.groupOwnerDetails.methods.updateDetails();
}
};
try
{
GupShup.html.dynamic.groupOwnerDetails.methods.initPage();
}
catch(error)
{
if (GupShup.conf.jsDebug)
alert('Could not process groupOwnerDetailsJsp dynamic module : error-' + error);
}
Member Responses
Reply to my messages and let me know your thoughts and comments. Just hit reply to SMS on mobile, type your message and send!
To join my group click on the JOIN button or send SMS to 567678JOIN MASALA69
Recent Replies
No replies yet!
$NICK_NAME$ says:
$REPLIES$
GupShup.html.dynamic.replies = {};
GupShup.html.dynamic.replies.map = [
{key:'http://resource.smsgupshup.com/webimages/$GROUP_IMG_SRC$.jpg', dataMember:'image'},
{key:'$NICK_NAME$', dataMember:'nick'},
{key:'$REPLIES$', dataMember:'text'}
];
GupShup.html.dynamic.replies.methods = {};
GupShup.html.dynamic.replies.methods.repliesJsp_process = function()
{
var repliesJsonStr = '{"params":{"limit":5,"start":0,"type":"REPLIES","needTotalForPg":true,"entityId":"2797044"},"message":"","totalForPg":261,"entityReplies":[{"fromPublisher":false,"srcUser":11473273,"text":"Subha gujri phir mahakti Raat aa gayi, Dil dhadka phir apki yaad aa gayi, Sanso ne mahsus kiya us hawa ko jo aapko chukar mere pass aa gayi.. ","image":"http://resource.smsgupshup.com/webimages/images/channels/2.3.3.78600.gif","timestamp":"6 hours ago","nick":"usr0166","id":174107},{"fromPublisher":false,"srcUser":13457293,"text":"MASALA69: Smita Shah
JOIN SEXXWORLD ","image":"http://resource.smsgupshup.com/webimages/images/channels/2.3.3.78600.gif","timestamp":"7 hours ago","nick":"usr0030","id":173808},{"fromPublisher":false,"srcUser":13687799,"text":"MASALA69 ","image":"http://resource.smsgupshup.com/webimages/images/channels/4.3.3.78600.gif","timestamp":"7 hours ago","nick":"usr0157","id":173533},{"fromPublisher":false,"srcUser":9097141,"text":"Gal: Ladke jab ikatte hote he to kya baate krte hoge? Frnd2: Wohi baate jo hm frnds aapas me krti he Gal: Chi-chi,Ladke itne besharm hote he ","image":"http://resource.smsgupshup.com/webimages/images/channels/2.3.3.78600.gif","timestamp":"11 hours ago","nick":"usr0165","id":172494},{"fromPublisher":false,"srcUser":12468452,"text":"A baby fish asked her mother: Why Can't we live on earth?
MOTHER FISH: Earth is not the place for FISH,it s made for SELFISH. (SHUBHAM) ","image":"http://resource.smsgupshup.com/webimages/images/channels/1.3.3.78600.gif","timestamp":"15 hours ago","nick":"usr0040","id":171405}],"status":"SUCCESS","errorCode":"NO_ERROR"}';
var replies = GupShup.util.getJsonFromResponse(repliesJsonStr);
if((typeof(replies.status) != 'undefined') && (replies.status == 'SUCCESS'))
{
if(replies.entityReplies.length > 0)
{
var containerDivId = 'repliesListContainerRIGHT';
var templateDivId = 'repliesTemplateRIGHT';
GupShup.util.expandTemplateInDiv(containerDivId, templateDivId, GupShup.html.dynamic.replies.map, replies.entityReplies);
document.getElementById('repliesBlockContainerRIGHT').style.display = "block";
}
else
{
document.getElementById('norepliesBlockContainerRIGHT').style.display = "block";
}
}
};
try
{
GupShup.html.dynamic.replies.methods.repliesJsp_process();
}
catch(error)
{
if (GupShup.conf.jsDebug)
alert('Could not process repliesJsp module : error-' + error);
}
GupShup.html.dynamic.favGroups = {};
GupShup.html.dynamic.favGroups.methods = {
getClassForImg : function(isPremium)
{
return (isPremium)? "goldframe" : "frame";
},
favGroupsJsp_process : function()
{
var favGroupsJSONStr = '{"subscriptions":[{"isDefault":"false","totalSubscribers":41326,"imageUrl":"http://resource2.smsgupshup.com/webimages/entity/1/327/1327992_1214339599263.png","totalPosts":1921,"userId":1328009,"isPremium":false,"isPrivate":false,"status":"ENABLED","id":1327992,"description":"Give Me the Opportunity to Entertain u With Cool Fresh Sms-es all day long. U Will Get Jokes, Romantic-Friendship Shayari, Qotes..etc. "Aur bhi bahut khuch hai dost...Jst Join it 2b Part of dis Grp" ","groupUrl":"http://www.smsgupshup.com/groups/hApPiEs_EnDiNgS","name":"hApPiEs_EnDiNgS","isPartner":false,"orgName":"hApPiEs_EnDiNgS"},{"isDefault":"false","totalSubscribers":1556,"imageUrl":"http://resource2.smsgupshup.com/webimages/entity/11/951/11951398_1224769939771.png","totalPosts":381,"userId":5744033,"isPremium":false,"isPrivate":false,"status":"ENABLED","id":11951398,"description":"Hi friends,This group provide you to get more about ->Computer tricks ->Internet link ->Mobile tricks & tips ->GPRS tricks ->Free games,etc tel ur frnz to join this free service [waptips@gmail.com] ","groupUrl":"http://www.smsgupshup.com/groups/WapTips","name":"WapTips","isPartner":false,"orgName":"WapTips"},{"isDefault":"false","totalSubscribers":21578,"imageUrl":"http://resource2.smsgupshup.com/webimages/entity/2/797/2797044_1229583599124.png","totalPosts":362,"userId":2797068,"isPremium":false,"isPrivate":false,"status":"ENABLED","id":2797044,"description":"To Get d Most SEXXY, YUMMY,HOT,EROTIC msgs 4 FREE on ur Mobile, Snd&#59; JOIN HOTXXX to 567678. > For Romantic Msgz, JOIN Mahek85 to 567678 ","groupUrl":"http://www.smsgupshup.com/groups/MASALA69","name":"MASALA69","isPartner":false,"orgName":"MASALA69"},{"isDefault":"false","totalSubscribers":462,"imageUrl":"http://resource2.smsgupshup.com/webimages/entity/8/913/8913914_1229584084641.png","totalPosts":14,"userId":2797068,"isPremium":false,"isPrivate":false,"status":"ENABLED","id":8913914,"description":"Hi this is cute mahek.. thanks for subscribing my grp.. plz tell ur friend to join my lovely grp mahek85 ","groupUrl":"http://www.smsgupshup.com/groups/Mahek85","name":"Mahek85","isPartner":false,"orgName":"Mahek85"},{"isDefault":"false","totalSubscribers":53302,"imageUrl":"http://resource2.smsgupshup.com/webimages/entity/0/97/97377_1214336952989.png","totalPosts":1484,"userId":97377,"isPremium":false,"isPrivate":false,"status":"ENABLED","id":97377,"description":"WeLcOmE!! JoIn 'WildFun' tO rEcEiVe FrEe HeArT tOuChInG sHaYaRi, FuNnY jOkEs, InSpIrInG tHoTs, LuV sMs, FrNdShP sMs EtC.. ","groupUrl":"http://www.smsgupshup.com/groups/WildFun","name":"WildFun","isPartner":false,"orgName":"WildFun"}],"userDetails":{"globalUserId":451529,"name":"Mahek","id":2797068},"params":{"limit":5,"start":0,"type":"MY_FAV_SUBSCRIPTIONS","userId":"2797068","showLatestMsg":"false","needTotalForPg":false,"showAll":false},"message":"","webarooUserDetails":{"gender":"FEMALE","age":21,"imageUrl":"http://resource2.smsgupshup.com/webimages/profile/0/451/451529_1229583554633.png","profileName":"Mahek","displayAge":true,"description":" ","location":"Bangalore","id":451529},"status":"SUCCESS","errorCode":"NO_ERROR"}';
if (GupShup.util.isInitialized(GupShup.conf.currentModule))
{
if (GupShup.util.trim(GupShup.conf.currentModule.refreshUrl) == '')
{
GupShup.conf.currentModule.refreshUrl
= GupShup.conf.readUrl + "&type=" + 'MY_FAV_SUBSCRIPTIONS'
+ '&userId=2797068' + '&showAll=false' + '&showLatestMsg=false'
+ '&start=0' + '&limit=' + '5' + '&needTotalForPg=false';
}
else
{
favGroupsJSONStr = GupShup.conf.currentModule.refreshArgs;
}
}
var favGroups = GupShup.util.getJsonFromResponse(favGroupsJSONStr);
if((typeof(favGroups.status) != 'undefined') && (favGroups.status == 'SUCCESS') && (favGroups.subscriptions.length > 0))
{
var tmplMap =
[
{key:'http://resource.smsgupshup.com/webimages/$GROUP_IMG_SRC$.jpg', dataMember:'imageUrl'},
{key:'$GROUP_NAME$', dataMember:'name'},
{key:'$IMG_CLASS$', dataMember:'isPremium', dataProcessor:GupShup.html.dynamic.favGroups.methods.getClassForImg},
{key:'http://resource.smsgupshup.com/webimages/$GROUP_PAGE_URL$.jpg', dataMember:'groupUrl'},
{key:'$POSTS_COUNT$', dataMember:'totalPosts'},
{key:'$SUBSCRIBER_COUNT$', dataMember:'totalSubscribers'}
];
var containerDivId = 'favGroupsListContainerRIGHT';
var templateDivId = 'favGroupTemplateRIGHT';
GupShup.util.expandTemplateInDiv(containerDivId, templateDivId, tmplMap, favGroups.subscriptions);
document.getElementById('favGroupsBlockContainerRIGHT').style.display = "block";
}
}
};
try
{
GupShup.html.dynamic.favGroups.methods.favGroupsJsp_process();
}
catch(error)
{
if (GupShup.conf.jsDebug)
alert('Could not process favGroupsJsp module : error-' + error);
}
$ENTITY_NAME$ is a Premium Group,
and the 5 sample posts shown are randomly picked from all the group posts.
The monthly subscription charges for this group are Rs.$JOIN_COST$/-. Your subscription is suspended. Please click on "Renew" button for reactivating it.
$ENTITY_POSTS_COUNT$ posts, $GROUP_SUBSCRIBERS$ members |
Join
You are about to report that this message violates GupShup Terms of Service.
We will review your request and take appropriate steps as necessary. Your report will be strictly confidential.
This group contains messages that may be unsuitable for some users. By clicking on 'Proceed' you confirm that you are older than 18 years of age and agree to view messages from this group.
$ENTITY_TMPL_EXPANSION$
No group found.
$ENTITY_NAME$
$ENTITY_NAME$ is a private group. You must contact the owner of this group to join it and receive group messages.
Send a message to $ENTITY_NAME$ to join this group.
To send a message from your mobile, SMS MSG $ENTITY_NAME$ followed by the message to 567678.
This message may be unsuitable for some users. By clicking on 'Proceed' you confirm that you are older than 18 years of age and agree to view this message.
$MSG_TMPL_EXPANSION$
This member has not posted any messages yet but will surely do so soon.
No messages found for specified page.
This is SMS GupShup Premium Group: Subscription charge is Rs.$JOIN_COST$/- for $BILLING_PERIOD$ days.
You can join to receive free $TRIAL_PERIOD$ days trial, after which you will need to pay using your preferred payment method.
These are replies to your groups posts.
We will forward you the replies as we recieve them.
You can change the settings for reply notifications from the settings page.
Status: $STATUS$
Status: $STATUS$
$DAYS$ days (Rs.$COST$)
$ISDEFAULT$
$TYPE$ $ENTITY_NAME$
Mobile Number:
Select Subscription Period:
SMS updates from $ENTITY_NAME$ will be sent to this mobile number.
You can cancel any time by clicking on Manage link in Groups Joined
You do not have sufficient balance in your Prepaid Account to proceed. Please Recharge your Prepaid account first and try again.
SMS greetings will not be delivered on CDMA mobile phones and you will not be charged for those users.
Your friend(s) will receive an SMS with the content download link. A working GPRS connection is required to download the content.
Confirmation
You will be charged Rs.$COST$ for every $ITEM$.
$GREETING_DWNLD_WARNING$
Item:
$ITEM$
Sent to:
$MEMBERS$ friends
Approx. Total Cost:
Rs. $TOTAL_COST$
Available Prepaid Balance:
Rs. $BALANCE$
$WARNIG$
Leave $ENTITY_NAME$
You are about to leave the premium group $ENTITY_NAME$.
Your subscription will be cancelled immediately & you will stop
receiving SMS messages from this group. You will not be charged for
this premium group in future.
You can rejoin this group at any time
by paying Rs. $JOIN_COST$ monthly subscription fee.
Successfuly sent
$ITEM$ sent to your $MEMBERS$.
Your prepaid account balance is Rs.$BALANCE$
If you have any issues with content download, please contact us at support@smsgupshup.com.
Premium Group Confirmation
You have re-subscribed to premium group $ENTITY_NAME$. SMS updates from $ENTITY_NAME$ will be sent to your mobile phone.
Your prepaid account balance is Rs.$BALANCE$
Paid Post Confirmation
You are using our Paid Message Service. You will be charged Rs.$COST$/message.
Sending to:
$MEMBERS$ members
Approx. Total Cost:
Rs. $TOTAL_COST$
Available Prepaid Balance:
Rs. $BALANCE$
$WARNIG$
Are you a business looking for fast, Premium SMS delivery service? Please contact us at businessgroups@smsgupshup.com
Group Post Confirmation
Message has been posted to your group.
Your prepaid account balance is Rs.$BALANCE$
Send Group Post Confirmation
Your group has zero members. You must invite some members before you can send a paid message.
Send SMS Greeting Confirmation
Your group has zero members. You must invite some members before you can send a SMS Greeting.