moved winix directories to winixdsubdirectory
git-svn-id: svn://ttmath.org/publicrep/winix/trunk@1028 e52654a7-88a9-db11-a3e9-0013d4bc506e
This commit is contained in:
265
winixd/templates/env.cpp
Normal file
265
winixd/templates/env.cpp
Normal file
@@ -0,0 +1,265 @@
|
||||
/*
|
||||
* This file is a part of Winix
|
||||
* and is distributed under the 2-Clause BSD licence.
|
||||
* Author: Tomasz Sowa <t.sowa@ttmath.org>
|
||||
*/
|
||||
|
||||
/*
|
||||
* Copyright (c) 2012-2015, Tomasz Sowa
|
||||
* All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions are met:
|
||||
*
|
||||
* 1. Redistributions of source code must retain the above copyright notice,
|
||||
* this list of conditions and the following disclaimer.
|
||||
*
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
||||
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||
* POSSIBILITY OF SUCH DAMAGE.
|
||||
*
|
||||
*/
|
||||
|
||||
#include "templates.h"
|
||||
#include "core/misc.h"
|
||||
#include "functions/functions.h"
|
||||
#include "miscspace.h"
|
||||
|
||||
|
||||
namespace Winix
|
||||
{
|
||||
|
||||
|
||||
namespace TemplatesFunctions
|
||||
{
|
||||
|
||||
|
||||
|
||||
void env_str(Info & i)
|
||||
{
|
||||
User * puser = cur->session->puser;
|
||||
|
||||
if( puser )
|
||||
puser->env.Serialize(i.out, true, false);
|
||||
}
|
||||
|
||||
|
||||
void env(Info & i)
|
||||
{
|
||||
User * puser = cur->session->puser;
|
||||
|
||||
if( puser )
|
||||
space(i, puser->env);
|
||||
}
|
||||
|
||||
|
||||
void env_tab(Info & i)
|
||||
{
|
||||
User * puser = cur->session->puser;
|
||||
|
||||
if( puser )
|
||||
spaces_tab(i, puser->env);
|
||||
}
|
||||
|
||||
|
||||
void env_tab_value(Info & i)
|
||||
{
|
||||
User * puser = cur->session->puser;
|
||||
|
||||
if( puser )
|
||||
spaces_tab_value(i, puser->env);
|
||||
}
|
||||
|
||||
|
||||
|
||||
void env_tab_has_next(Info & i)
|
||||
{
|
||||
User * puser = cur->session->puser;
|
||||
|
||||
if( puser )
|
||||
spaces_tab_has_next(i, puser->env);
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
void env_admin_str(Info & i)
|
||||
{
|
||||
User * puser = cur->session->puser;
|
||||
|
||||
if( puser )
|
||||
puser->aenv.Serialize(i.out, true, false);
|
||||
}
|
||||
|
||||
|
||||
void env_admin(Info & i)
|
||||
{
|
||||
User * puser = cur->session->puser;
|
||||
|
||||
if( puser )
|
||||
space(i, puser->aenv);
|
||||
}
|
||||
|
||||
|
||||
void env_admin_tab(Info & i)
|
||||
{
|
||||
User * puser = cur->session->puser;
|
||||
|
||||
if( puser )
|
||||
spaces_tab(i, puser->aenv);
|
||||
}
|
||||
|
||||
|
||||
void env_admin_tab_value(Info & i)
|
||||
{
|
||||
User * puser = cur->session->puser;
|
||||
|
||||
if( puser )
|
||||
spaces_tab_value(i, puser->aenv);
|
||||
}
|
||||
|
||||
|
||||
|
||||
void env_admin_tab_has_next(Info & i)
|
||||
{
|
||||
User * puser = cur->session->puser;
|
||||
|
||||
if( puser )
|
||||
spaces_tab_has_next(i, puser->aenv);
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
void env_user_admin_env_str(Info & i)
|
||||
{
|
||||
// only an admin is able to see this variables
|
||||
|
||||
if( cur->session->puser && cur->session->puser->super_user )
|
||||
{
|
||||
User * puser = functions->fun_env.GetUser();
|
||||
|
||||
if( puser )
|
||||
i.out << puser->aenv;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
void env_user_env_str(Info & i)
|
||||
{
|
||||
User * puser = functions->fun_env.GetUser();
|
||||
|
||||
if( puser )
|
||||
i.out << puser->env;
|
||||
}
|
||||
|
||||
|
||||
void env_user_id(Info & i)
|
||||
{
|
||||
User * puser = functions->fun_env.GetUser();
|
||||
|
||||
if( puser )
|
||||
i.out << puser->id;
|
||||
}
|
||||
|
||||
|
||||
void env_user_name(Info & i)
|
||||
{
|
||||
User * puser = functions->fun_env.GetUser();
|
||||
|
||||
if( puser )
|
||||
i.out << puser->name;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
static Users::Iterator user_iter;
|
||||
static size_t user_reqid = 0;
|
||||
static size_t user_index; // only information
|
||||
|
||||
|
||||
bool env_user_tab_init()
|
||||
{
|
||||
if( user_reqid != cur->request->id )
|
||||
{
|
||||
user_reqid = cur->request->id;
|
||||
user_iter = system->users.End();
|
||||
}
|
||||
|
||||
return user_iter != system->users.End();
|
||||
}
|
||||
|
||||
|
||||
void env_user_tab(Info & i)
|
||||
{
|
||||
env_user_tab_init();
|
||||
|
||||
if( cur->session->puser && cur->session->puser->super_user )
|
||||
{
|
||||
user_index = i.iter;
|
||||
|
||||
if( i.iter == 0 )
|
||||
user_iter = system->users.Begin();
|
||||
else
|
||||
if( user_iter != system->users.End() )
|
||||
++user_iter;
|
||||
|
||||
i.res = user_iter != system->users.End();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
void env_user_tab_id(Info & i)
|
||||
{
|
||||
if( env_user_tab_init() )
|
||||
i.out << user_iter->id;
|
||||
}
|
||||
|
||||
|
||||
void env_user_tab_name(Info & i)
|
||||
{
|
||||
if( env_user_tab_init() )
|
||||
i.out << user_iter->name;
|
||||
}
|
||||
|
||||
|
||||
void env_user_tab_is_current(Info & i)
|
||||
{
|
||||
if( env_user_tab_init() )
|
||||
{
|
||||
User * puser = functions->fun_env.GetUser();
|
||||
|
||||
if( puser )
|
||||
i.res = (user_iter->id == puser->id );
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
} // namespace TemplatesFunctions
|
||||
|
||||
} // namespace Winix
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user