CFLib.org – Common Function Library Project

addRemoveDebuggingIPAddress(ipAddress [, action])

Last updated February 17, 2004
Download UDF

author

Qasim Rasheed                                     Qasim Rasheed

Version: 1 | Requires: ColdFusion MX | Library: UtilityLib

Description:
This function will either add or remove an IP address to the list of debugging ip addresses if you do not have an administrator access. It accepts two parameters, IPaddress to be added or removed and the action i.e either add or remove.

Return Values:
Returns a list of IP addresses.

Example:

<cfoutput>#addRemoveDebuggingIPAddress("127.0.0.2","remove")#</cfoutput>

Parameters:

Name Description Required
ipAddress IP Address Yes
action Add or Remove. Defaults to Add. No

Full UDF Source:

<!---
This function will either add or remove an IP address to the list of debugging ip addresses if you do not have an administrator access.

@param ipAddress      IP Address (Required)
@param action      Add or Remove. Defaults to Add. (Optional)
@return Returns a list of IP addresses.
@author Qasim Rasheed (qasim_1976@yahoo.com)
@version 1, February 17, 2004
--->

<cffunction name="addRemoveDebuggingIPAddress" output="false" returnType="string">
    <cfargument name="IPaddress" type="string" required="Yes" />
    <cfargument name="action" type="string" default="Add" />
    <cfscript>
        var factory = CreateObject("Java","coldfusion.server.ServiceFactory");
        var debuggingService ="";
    
</cfscript>
    <cflock name="factory_debuggingservice" type="exclusive" timeout="5">
        <cfset debuggingService = factory.getDebuggingService()>
        <cfswitch expression="#arguments.action#">
            <cfcase value="Add">
                <cfif not listcontainsnocase(debuggingService.iplist.ipList,arguments.IPaddress)>
                    <cfset debuggingService.iplist.ipList = ListAppend(debuggingService.iplist.ipList,arguments.IPaddress)>
                </cfif>
            </cfcase>
            <cfcase value="Remove">
                <cfif listcontainsnocase(debuggingService.iplist.ipList,arguments.IPaddress)>
                    <cfset debuggingService.iplist.ipList = ListDeleteAt(debuggingService.iplist.ipList,ListFindNoCase(debuggingService.iplist.ipList,arguments.IPaddress))>
                </cfif>
            </cfcase>
        </cfswitch>
        <cfreturn debuggingService.iplist.ipList />
    </cflock>
</cffunction>

Search CFLib.org


Latest Additions

Raymond Compton Raymond Compton added
structBlend
19 day(s) ago

Duncan Duncan added
IsZIPUK
19 day(s) ago

Todd Sharp Todd Sharp added
getTagContentAll
25 day(s) ago

Gerald Guido Gerald Guido added
ListReturnDuplicat...
1 month(s) ago

Gerald Guido Gerald Guido added
ListReturnDuplicat...
1 month(s) ago

Created by Raymond Camden / Design by Justin Johnson