Ejemplo n.º 1
0
    /**
     * @param SearchModel $model
     * @see ControllerBase::add()
     */
    public function add($model)
    {
        if ($model->validateForAdd()) {
            try {
                $query = <<<SQL
INSERT search
     ( id
     , engineName
     , searchName
     , url
     , created
     , updated
     )
VALUES ( ?, ?, ?, ?, NOW(), NOW() )
SQL;
                $id = $model->getId();
                $engineName = $model->getEngineName();
                $searchName = $model->getSearchName();
                $url = $model->getUrl();
                $stmt = $this->_dbh->prepare($query);
                if (!$stmt) {
                    throw new ControllerException('Prepared statement failed for ' . $query);
                }
                if (!$stmt->bind_param('isss', $id, $engineName, $searchName, $url)) {
                    throw new ControllerException('Binding parameters for prepared statement failed.');
                }
                if (!$stmt->execute()) {
                    throw new ControllerException('Failed to execute INSERT statement. (' . $this->_dbh->error . ')');
                }
                $newId = $stmt->insert_id;
                /**
                 * @SuppressWarnings checkAliases
                 */
                if (!$stmt->close()) {
                    throw new ControllerException('Something broke while trying to close the prepared statement.');
                }
                return $newId;
            } catch (Exception $e) {
                throw new ControllerException($e->getMessage());
            }
        } else {
            throw new ControllerException("Invalid data.");
        }
    }
Ejemplo n.º 2
0
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License along
 * with this program; if not, write to the Free Software Foundation, Inc.,
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 *
 */
require_once "Libs/autoload.php";
$config = new Config();
$webPage = new PJSWebPage($config->getTitle() . "Searches - Add Search");
$body = '';
$act = Tools::Param('act');
if ("Add Search" === $act) {
    $model = new SearchModel();
    $model->populateFromForm();
    if (!$model->validateForAdd()) {
        $view = new SearchFormView('Add Search', $model);
        $body = "<h2>Invalid data</h2>\n" . $view->getForm();
    } else {
        $searchController = new SearchController();
        $newId = $searchController->add($model);
        if ($newId > 0) {
            $body = "Added search # " . $newId . "<br />\n";
        }
    }
} else {
    $body = "";
    $view = new SearchFormView("Add Search", null);
    $body = $view->getForm();
}
$webPage->setBody($body);