%PDF- %PDF-
| Direktori : /var/www/crm/modules/Documents/views/ |
| Current File : /var/www/crm/modules/Documents/views/view.extdoc.php |
<?php
if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
/*********************************************************************************
* SugarCRM Community Edition is a customer relationship management program developed by
* SugarCRM, Inc. Copyright (C) 2004-2012 SugarCRM Inc.
*
* This program is free software; you can redistribute it and/or modify it under
* the terms of the GNU Affero General Public License version 3 as published by the
* Free Software Foundation with the addition of the following permission added
* to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
* IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
* OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
* details.
*
* You should have received a copy of the GNU Affero General Public License along with
* this program; if not, see http://www.gnu.org/licenses or write to the Free
* Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301 USA.
*
* You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
* SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
*
* The interactive user interfaces in modified source and object code versions
* of this program must display Appropriate Legal Notices, as required under
* Section 5 of the GNU Affero General Public License version 3.
*
* In accordance with Section 7(b) of the GNU Affero General Public License version 3,
* these Appropriate Legal Notices must retain the display of the "Powered by
* SugarCRM" logo. If the display of the logo is not reasonably feasible for
* technical reasons, the Appropriate Legal Notices must display the words
* "Powered by SugarCRM".
********************************************************************************/
require_once('include/Sugar_Smarty.php');
require_once('include/externalAPI/ExternalAPIFactory.php');
class DocumentsViewExtdoc extends SugarView
{
var $options = array('show_header' => false, 'show_title' => false, 'show_subpanels' => false, 'show_search' => true, 'show_footer' => false, 'show_javascript' => false, 'view_print' => false,);
public function init($bean, $view_object_map) {
$this->seed = $bean;
}
public function display(){
global $mod_strings;
if ( isset($_REQUEST['name_basic']) ) {
$file_search = trim($_REQUEST['name_basic']);
} else {
$file_search = '';
}
if ( !isset($_REQUEST['apiName']) ) {
$apiName = 'IBMSmartCloud';
} else {
$tmpApi = ExternalAPIFactory::loadAPI($_REQUEST['apiName'],true);
if ( $tmpApi === false )
{
$GLOBALS['log']->error(string_format($mod_strings['ERR_INVALID_EXTERNAL_API_ACCESS'], array($_REQUEST['apiName'])));
return;
}
$apiName = $_REQUEST['apiName'];
}
// See if we are running as a popup window
if ( isset($_REQUEST['isPopup']) && $_REQUEST['isPopup'] == 1 && !empty($_REQUEST['elemBaseName']) ) {
$isPopup = true;
} else {
$isPopup = false;
}
// bug50952 - must actually make sure we can log in, not just that we've got a EAPM record
// getLoginInfo only checks to see if user has logged in correctly ONCE to ExternalAPI
// Need to manually attempt to fetch the EAPM record, we don't want to give them the signup screen when they just have a deactivated account.
$eapmBean = EAPM::getLoginInfo($apiName,true);
$api = ExternalAPIFactory::loadAPI($apiName,true);
$validSession = true;
if(!empty($eapmBean))
{
try {
$api->loadEAPM($eapmBean);
// $api->checkLogin() does the same thing as quickCheckLogin plus actually makes sure the user CAN log in to the API currently
$loginCheck = $api->checkLogin($eapmBean);
if(isset($loginCheck['success']) && !$loginCheck['success'])
{
$validSession = false;
}
} catch(Exception $ex) {
$validSession = false;
$GLOBALS['log']->error(string_format($mod_strings['ERR_INVALID_EXTERNAL_API_LOGIN'], array($apiName)));
}
}
if (!$validSession || empty($eapmBean))
{
// Bug #49987 : Documents view.extdoc.php doesn't allow custom override
$tpl_file = get_custom_file_if_exists('include/externalAPI/'.$apiName.'/'.$apiName.'Signup.'.$GLOBALS['current_language'].'.tpl');
if (file_exists($tpl_file))
{
$smarty = new Sugar_Smarty();
echo $smarty->fetch($tpl_file);
} else {
$output = string_format(translate('LBL_ERR_FAILED_QUICKCHECK','EAPM'), array($apiName));
$output .= '<form method="POST" target="_EAPM_CHECK" action="index.php">';
$output .= '<input type="hidden" name="module" value="EAPM">';
$output .= '<input type="hidden" name="action" value="Save">';
$output .= '<input type="hidden" name="record" value="'.$eapmBean->id.'">';
$output .= '<input type="hidden" name="active" value="1">';
$output .= '<input type="hidden" name="closeWhenDone" value="1">';
$output .= '<input type="hidden" name="refreshParentWindow" value="1">';
$output .= '<br><input type="submit" value="'.$GLOBALS['app_strings']['LBL_EMAIL_OK'].'"> ';
$output .= '<input type="button" onclick="lastLoadedMenu=undefined;DCMenu.closeOverlay();return false;" value="'.$GLOBALS['app_strings']['LBL_CANCEL_BUTTON_LABEL'].'">';
$output .= '</form>';
echo $output;
}
return;
}
$searchDataLower = $api->searchDoc($file_search,true);
// In order to emulate the list views for the SugarFields, I need to uppercase all of the key names.
$searchData = array();
if ( is_array($searchDataLower) ) {
foreach ( $searchDataLower as $row ) {
$newRow = array();
foreach ( $row as $key => $value ) {
$newRow[strtoupper($key)] = $value;
}
if ( $isPopup ) {
// We are running as a popup window, we need to replace the direct url with some javascript
$newRow['DOC_URL'] = "javascript:window.opener.SUGAR.field.file.populateFromPopup('".addslashes($_REQUEST['elemBaseName'])."','".addslashes($newRow['ID'])."','".addslashes($newRow['NAME'])."','".addslashes($newRow['URL'])."','".addslashes($newRow['URL'])."'); window.close();";
}else{
$newRow['DOC_URL'] = $newRow['URL'];
}
$searchData[] = $newRow;
}
}
$displayColumns = array(
'NAME' => array(
'label' => 'LBL_LIST_EXT_DOCUMENT_NAME',
'type' => 'varchar',
'link' => true,
),
'DATE_MODIFIED' => array(
'label' => 'LBL_DATE',
'type' => 'date',
),
);
$ss = new Sugar_Smarty();
$ss->assign('searchFieldLabel',translate('LBL_SEARCH_EXTERNAL_DOCUMENT','Documents'));
$ss->assign('displayedNote',translate('LBL_EXTERNAL_DOCUMENT_NOTE','Documents'));
$ss->assign('APP',$GLOBALS['app_strings']);
$ss->assign('MOD',$GLOBALS['mod_strings']);
$ss->assign('data', $searchData);
$ss->assign('displayColumns',$displayColumns);
$ss->assign('imgPath',SugarThemeRegistry::current()->getImageURL($apiName.'_image_inline.png'));
if ( $isPopup ) {
$ss->assign('linkTarget','');
$ss->assign('isPopup',1);
$ss->assign('elemBaseName',$_REQUEST['elemBaseName']);
} else {
$ss->assign('linkTarget','_new');
$ss->assign('isPopup',0);
$ss->assign('elemBaseName','');
}
$ss->assign('apiName',$apiName);
$ss->assign('DCSEARCH',$file_search);
if ( $isPopup ) {
// Need the popup header... I feel so dirty.
ob_start();
echo('<div class="dccontent">');
insert_popup_header($GLOBALS['theme'], false);
$output_html = ob_get_contents();
ob_end_clean();
$output_html .= get_form_header(translate('LBL_SEARCH_FORM_TITLE','Documents'), '', false);
echo($output_html);
}
$ss->display('modules/Documents/tpls/view.extdoc.tpl');
if ( $isPopup ) {
// Close the dccontent div
echo('</div>');
}
}
}