Exemplo n.º 1
0
 *
 * You should have received a copy of the GNU Affero General Public
 * License along with this library.  If not, see <http://www.gnu.org/licenses/>.
 *
 */
namespace OCA\Documents\AppInfo;

use OCA\Documents\Filter\Office;
use OCA\Documents\Config;
$app = new Application();
$c = $app->getContainer();
\OCP\App::registerAdmin('documents', 'admin');
\OCP\App::registerPersonal('documents', 'personal');
$navigationEntry = function () use($c) {
    return ['id' => 'documents_index', 'order' => 2, 'href' => $c->query('ServerContainer')->getURLGenerator()->linkToRoute('documents.document.index'), 'icon' => $c->query('ServerContainer')->getURLGenerator()->imagePath('documents', 'documents.svg'), 'name' => $c->query('L10N')->t('Documents')];
};
$c->getServer()->getNavigationManager()->add($navigationEntry);
//Script for registering file actions
$request = \OC::$server->getRequest();
if (isset($request->server['REQUEST_URI'])) {
    $url = $request->server['REQUEST_URI'];
    if (preg_match('%index.php/apps/files(/.*)?%', $url)) {
        \OCP\Util::addScript('documents', 'viewer/viewer');
    }
}
if (Config::getConverter() !== 'off') {
    $docFilter = new Office(['read' => ['target' => 'application/vnd.oasis.opendocument.text', 'format' => 'odt:writer8', 'extension' => 'odt'], 'write' => ['target' => 'application/msword', 'format' => 'doc', 'extension' => 'doc']]);
    $docxFilter = new Office(['read' => ['target' => 'application/vnd.oasis.opendocument.text', 'format' => 'odt:writer8', 'extension' => 'odt'], 'write' => ['target' => 'application/vnd.openxmlformats-officedocument.wordprocessingml.document', 'format' => 'docx', 'extension' => 'docx']]);
}
//Listen to delete file signal
\OCP\Util::connectHook('OC_Filesystem', 'delete', "OCA\\Documents\\Storage", "onDelete");
Exemplo n.º 2
0
 public function setConverter($converter, $url)
 {
     if (!is_null($converter)) {
         $this->settings->setAppValue($this->appName, 'converter', $converter);
     }
     if (!is_null($url)) {
         $this->settings->setAppValue($this->appName, 'converter_url', $url);
     }
     $response = array('status' => 'success', 'data' => array('message' => (string) $this->l10n->t('Saved')));
     $currentConverter = $this->settings->getAppValue($this->appName, 'converter', 'off');
     if ($currentConverter == 'external') {
         if (!Converter::checkConnection()) {
             $this->logger->warning('Bad response from Format Filter Server', array('app' => $this->appName));
             $response = array('status' => 'error', 'data' => array('message' => (string) $this->l10n->t('Format filter server is down or misconfigured')));
         }
     } elseif ($currentConverter === 'local') {
         try {
             if (!Config::testConversion()) {
                 $response = array('status' => 'error', 'data' => array('message' => (string) $this->l10n->t('Conversion failed. Check log for details.')));
             }
         } catch (\Exception $e) {
             $response = array('status' => 'error', 'data' => array('message' => $e->getMessage()));
         }
     }
     return $response;
 }
Exemplo n.º 3
0
 public static function getGuestPostfix()
 {
     return '(' . \OCA\Documents\Config::getL10n()->t('guest') . ')';
 }