<!---
This file is Copyright © 1998-2009 by Home Care Business Services. This work may not be reproduced, in whole or in part, 
using any medium, including, but not limited to, electronic transmission, CD-ROM or published in print, without the express 
permission of Home Care Business Services.

$Revision: 1.1 $
$Id: agency_ftpbackup.cfm,v 1.1 2009/09/01 11:42:39 arlen Exp $
$Date: 2009/09/01 11:42:39 $
--->

<cfquery   name="agency" datasource="#Application.DataSrc#">
	SELECT Agency_Name, Agency_ID, ExportData, Agency_Contact_Email
	FROM #Request.prefix_db_lookup#.Agency 
	WHERE Agency_ID = #session.AgencyID#
</cfquery>

<!--- End page specific code --->


<h1><cfoutput>#agency.Agency_name# FTP Backup Data</cfoutput></h1>

<cfif agency.exportdata eq 62>
	<p>You currently do not have access to use the FTP Backup Data Feature.</p>
<cfelse>
	<cfif 1>
	<cfhttp url="http://76.12.35.143/exportdata/#agency.Agency_id#-#agency.Agency_name#/index.txt">
		<table cellpadding="0" cellspacing="2" border="0">
		<tr class="list-hdr">
			<td width=100>Date</td>
			<td width=100><div align="center">File</div></td>
		</tr>
		<cfoutput>
		  #cfhttp.filecontent#
		</cfoutput>
		</table>
	<cfelse>
		<cfset thedir='//76.12.35.143/e_drive/wwwroot/exportdata/#agency.Agency_id#-#agency.Agency_name#/'>
		<cfset thedir='/exportdata/#agency.Agency_id#-#agency.Agency_name#/'>
		<cfset thedir2='e:/wwwroot/exportdata/#agency.Agency_id#-#agency.Agency_name#/'>
		<cfdirectory name=dirQuery filter='*.csv' directory='#thedir#' sort = "datelastmodified DESC,name ASC">
		<table cellpadding="0" cellspacing="2" border="0">
		<tr class="list-hdr">
			<td width=100>Date</td>
			<td width=100><div align="center">File</div></td>
		</tr>
		<cfset lastdate="">
		<cfoutput query="dirQuery">
		<cfset thedate=dateformat(dirQuery.dateLastModified,"MM/DD/YY")>
		   <tr><td nowrap>
		   <cfif thedate neq lastdate>
		   #thedate#
		   <cfset lastdate=thedate>
		   </cfif>
		   </td><td nowrap><a href="http://76.12.35.143/exportdata/#agency.Agency_ID#-#agency.Agency_Name#/#dirQuery.name#">#dirQuery.name#</a></td></tr>
		</cfoutput>

		</table>
	</cfif>
</cfif>
