package com.planet_ink.coffee_mud.WebMacros;
import com.planet_ink.coffee_web.interfaces.*;
import com.planet_ink.coffee_web.util.CWThread;
import com.planet_ink.coffee_mud.core.interfaces.*;
import com.planet_ink.coffee_mud.core.*;
import com.planet_ink.coffee_mud.core.collections.*;
import com.planet_ink.coffee_mud.Abilities.interfaces.*;
import com.planet_ink.coffee_mud.Areas.interfaces.*;
import com.planet_ink.coffee_mud.Behaviors.interfaces.*;
import com.planet_ink.coffee_mud.CharClasses.interfaces.*;
import com.planet_ink.coffee_mud.Libraries.interfaces.*;
import com.planet_ink.coffee_mud.Libraries.interfaces.JournalsLibrary.ForumJournalFlags;
import com.planet_ink.coffee_mud.Common.interfaces.*;
import com.planet_ink.coffee_mud.Exits.interfaces.*;
import com.planet_ink.coffee_mud.Items.interfaces.*;
import com.planet_ink.coffee_mud.Locales.interfaces.*;
import com.planet_ink.coffee_mud.MOBS.interfaces.*;
import com.planet_ink.coffee_mud.Races.interfaces.*;
import java.util.*;
/*
Copyright 2010-2019 Bo Zimmerman
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
public class ForumInfo extends StdWebMacro
{
@Override
public String name()
{
return "ForumInfo";
}
@Override
public String runMacro(final HTTPRequest httpReq, final String parm, final HTTPResponse httpResp)
{
final java.util.Map<String,String> parms=parseParms(parm);
final String last=httpReq.getUrlParameter("JOURNAL");
if(last==null)
return " @break@";
boolean securityOverride=false;
if((Thread.currentThread() instanceof CWThread)
&&CMath.s_bool(((CWThread)Thread.currentThread()).getConfig().getMiscProp("ADMIN"))
&&parms.containsKey("ALLFORUMJOURNALS"))
securityOverride=true;
final MOB M = Authenticate.getAuthenticatedMob(httpReq);
if((!securityOverride)&&(CMLib.journals().isArchonJournalName(last))&&((M==null)||(!CMSecurity.isASysOp(M))))
return " @break@";
final Clan setClan=CMLib.clans().getClan(httpReq.getUrlParameter("CLAN"));
final JournalsLibrary.ForumJournal journal=CMLib.journals().getForumJournal(last,setClan);
if(journal == null)
return " @break@";
final StringBuffer str=new StringBuffer("");
if(parms.containsKey("ISSMTPFORWARD"))
{
@SuppressWarnings("unchecked")
// the smtp forwarding vars are set in the smtp.ini file, read by the smtp server. This is out ONLY access to that info.
final
TreeMap<String, JournalsLibrary.SMTPJournal> set=(TreeMap<String, JournalsLibrary.SMTPJournal>) Resources.getResource("SYSTEM_SMTP_JOURNALS");
final JournalsLibrary.SMTPJournal entry =(set!=null) ? set.get(last.toUpperCase().trim()) : null;
final String email=((M!=null) &&(M.playerStats()!=null) && (M.playerStats().getEmail()!=null)) ? M.playerStats().getEmail() : "";
str.append( ((entry!=null) && (email.length()>0)) ? Boolean.toString(entry.forward()) : "false").append(", ");
}
if(parms.containsKey("ISSMTPSUBSCRIBER"))
{
final Map<String, List<String>> lists=Resources.getCachedMultiLists("mailinglists.txt",true);
final List<String> mylist=lists.get(last);
final boolean found;
if((mylist != null)&&(M!=null))
{
if(mylist.contains(M.Name()))
found=true;
else
if((M.playerStats()!=null)
&&(M.playerStats().getAccount()!=null)
&&(mylist.contains(M.playerStats().getAccount().getAccountName())))
found=true;
else
found=false;
}
else
found=false;
str.append(""+found).append(", ");
}
if(parms.containsKey("SMTPADDRESS"))
{
@SuppressWarnings("unchecked")
final
TreeMap<String, JournalsLibrary.SMTPJournal> set=(TreeMap<String, JournalsLibrary.SMTPJournal>) Resources.getResource("SYSTEM_SMTP_JOURNALS");
final JournalsLibrary.SMTPJournal entry =(set!=null) ? set.get(last.toUpperCase().trim()) : null;
if((entry!=null)&&(entry.forward()))
{
str.append( entry.name().replace(' ','_')+"@"+CMProps.getVar(CMProps.Str.MUDDOMAIN)).append(", ");
}
}
if(parms.containsKey("CANADMIN")||parms.containsKey("ISADMIN"))
str.append( ""+journal.authorizationCheck(M, ForumJournalFlags.ADMIN)).append(", ");
if(parms.containsKey("CANPOST"))
str.append( ""+journal.authorizationCheck(M, ForumJournalFlags.POST)).append(", ");
if(parms.containsKey("CANREAD"))
str.append( ""+journal.authorizationCheck(M, ForumJournalFlags.READ)).append(", ");
if(parms.containsKey("CANREPLY"))
str.append( ""+journal.authorizationCheck(M, ForumJournalFlags.REPLY)).append(", ");
if(parms.containsKey("ADMINMASK"))
str.append( ""+journal.adminMask()).append(", ");
if(parms.containsKey("READMASK"))
str.append( ""+journal.readMask()).append(", ");
if(parms.containsKey("POSTMASK"))
str.append( ""+journal.postMask()).append(", ");
if(parms.containsKey("REPLYMASK"))
str.append( ""+journal.replyMask()).append(", ");
if(parms.containsKey("ID"))
str.append( ""+journal.NAME()).append(", ");
if(parms.containsKey("NAME"))
str.append( ""+journal.NAME()).append(", ");
if(parms.containsKey("CATEGORY"))
str.append(""+journal.category()).append(", ");
if(parms.containsKey("EXPIRE"))
str.append( "").append(", ");
final JournalsLibrary.JournalMetaData metaData = CMLib.journals().getJournalStats(journal);
if(metaData == null)
return " @break@";
if(parms.containsKey("POSTS"))
str.append( ""+metaData.posts()).append(", ");
if(parms.containsKey("THREADS"))
str.append( ""+metaData.threads()).append(", ");
if(parms.containsKey("SHORTDESC"))
str.append( ""+metaData.shortIntro()).append(", ");
if(parms.containsKey("LONGDESC"))
str.append( ""+metaData.longIntro()).append(", ");
if(parms.containsKey("IMAGEPATH"))
{
if((metaData.imagePath()==null)
||(metaData.imagePath().trim().length()==0))
str.append( L("images/lilcm.jpg")).append(", ");
else
str.append( ""+metaData.threads()).append(", ");
}
String strstr=str.toString();
if(strstr.endsWith(", "))
strstr=strstr.substring(0,strstr.length()-2);
return clearWebMacros(strstr);
}
}