Jak utworzyć węzły za pomocą node_save?

9

Próbuję migrować moją obecną stronę HTML do Drupal. Mam ponad 80 000 stron do migracji, więc pomyślałem, że zamiast siedzieć przed komputerem przez 50 lat, stworzę moduł. Byłem w stanie stworzyć skrypt, który wyodrębnia HTML z każdego katalogu, a teraz dotarłem do bloku drogowego, w którym muszę utworzyć węzeł. Próbuję utworzyć nowy węzeł za pomocą node_save(), ale po wykonaniu node_save pojawia się PDOExceptionbłąd we wszystkim, co próbuję. Przechodzę $node, czyli tablica, która jest następnie rzutowana na obiekt.

PDOException: in field_sql_storage_field_storage_write () (wiersz 424 /srv/www/htdocs/modules/field/modules/field_sql_storage/field_sql_storage.module).

W ten sposób tworzymy obecnie węzeł, ale powoduje to błąd:

$node= array(
    'uid' => $user->uid,
    'name' => $user->name,
    'type' => 'page',
    'language' => LANGUAGE_NONE,
    'title' => $html['title'],
    'status' => 1,
    'promote' => 0,
    'sticky' => 0,
    'created' => (int)REQUEST_TIME,
    'revision' => 0,
    'comment' => '1',
    'menu' => array(
        'enabled' => 0,
        'mlid' => 0,
        'module' => 'menu',
        'hidden' => 0,
        'has_children' => 0,
        'customized' => 0,
        'options' => array(),
        'expanded' => 0,
        'parent_depth_limit' => 8,
        'link_title' => '',
        'description' => '',
        'parent' => 'main-menu:0',
        'weight' => '0',
        'plid' => '0',
        'menu_name' => 'main-menu',
    ),
    'path' => array(
        'alias' => '',
        'pid' => null,
        'source' => null,
        'language' => LANGUAGE_NONE,
        'pathauto' => 1,
    ),
    'nid' => null,
    'vid' => null,
    'changed' => '',
    'additional_settings__active_tab' => 'edit-menu',
    'log' => '',
    'date' => '',
    'submit' => 'Save',
    'preview' => 'Preview',
    'private' => 0,
    'op' => 'Save',
    'body' => array(LANGUAGE_NONE => array(
        array(
            'value' => $html['html'],
            'summary' => $link,
            'format' => 'full_html',
        ),
    )),
        'validated' => true,
);

node_save((object)$node);

// Small hack to link revisions to our test user.
db_update('node_revision')
    ->fields(array('uid' => $node->uid))
    ->condition('vid', $node->vid)
    ->execute();
samwell
źródło

Odpowiedzi:

6

Myślę, że powinieneś przeczytać Jak programowo tworzyć węzły, komentarze i taksonomie w Drupal 7 .

$node = new stdClass(); // We create a new node object
$node->type = "page"; // Or any other content type you want
$node->title = "Your title goes jere";
$node->language = LANGUAGE_NONE; // Or any language code if Locale module is enabled. More on this below *
$node->path = array('alias' => 'your node path'); // Setting a node path
node_object_prepare($node); // Set some default values.
$node->uid = 1; // Or any id you wish

// Let's add standard body field
$node->body[$node->language][0]['value'] = 'This is a body text';
$node->body[$node->language][0]['summary'] = 'Here goes a summary';
$node->body[$node->language][0]['format'] = 'filtered_html'; // If field has a format, you need to define it. Here we define a default filtered_html format for a body field

$node = node_submit($node); // Prepare node for a submit
node_save($node); // After this call we'll get a nid
penguin89
źródło
dlaczego głosowanie negatywne?
vfclists
6

Zamiast rzutować tablicę na stdClassobiekt, możesz spróbować utworzyć nowy stdClass()obiekt, a następnie użyć node_object_prepare (), aby przygotować obiekt do utworzenia nowego węzła, a następnie ręcznie zmienić wartości uid, nazwa, tytuł, język, treść itp. Ponadto pamiętaj, aby użyć node_submit () przed zapisaniem nowego węzła w bazie danych.

Przykład: http://drupal.org/node/1173136

dwieeb
źródło
1

Problem polega na tym, że próbujesz utworzyć nowy węzeł z nid = null i vid = null, co psuje tabelę węzłów, gdy próbujesz wstawić nowe rekordy o numerze indeksu 0 - co powoduje problem ze zduplikowanymi wpisami i mylący rdzeń drupala. Nawiasem mówiąc - rdzeń drupal jest podatny na takie działania, jak node_save nie zobaczy problemu i spróbuje wstawić ten rekord do bazy danych - co powoduje błąd sql - i wyrzucenie wyjątku PDO

Daniofantasy
źródło