/tools/populate

http://github.com/openmelody/melody · Perl · 797 lines · 706 code · 56 blank · 35 comment · 33 complexity · c745eb7ad7dfe516e4a9896375e18b19 MD5 · raw file

  1. #!/usr/bin/perl
  2. # FIXME: authenticated commenters aren't created
  3. use strict;
  4. use warnings;
  5. use lib 'extlib', 'lib';
  6. use Data::Dumper;
  7. use Getopt::Long;
  8. use MT;
  9. use MT::Author;
  10. use MT::Permission;
  11. my $mt = MT->new() or die "No MT object " . MT->errstr();
  12. my $blogs = 1;
  13. my $destroy = 0;
  14. my $authors = 3;
  15. my $entries = 500;
  16. my $cats = 5;
  17. # this can be used to scale the default amount of data generated
  18. my $weight_factor = 1;
  19. my $bypass_confirm = 0;
  20. my $help = 0;
  21. my $silent = 0;
  22. my $years = 1;
  23. my $result = GetOptions(
  24. "authors=i" => \$authors,
  25. "blogs=i" => \$blogs,
  26. "categories=i" => \$cats,
  27. "entries=i" => \$entries,
  28. "weight=i" => \$weight_factor,
  29. "destroy" => \$destroy,
  30. "yes-really" => \$bypass_confirm,
  31. "help|?" => \$help,
  32. "silent" => \$silent,
  33. "years=i" => \$years,
  34. );
  35. if ($help) {
  36. eval { require Pod::Usage };
  37. die "No Pod::Usage available. Use the Source, Luke." if $@;
  38. Pod::Usage::pod2usage( -exitstatus => 1 );
  39. }
  40. use vars qw($this_blog $this_iter $this_obj $this_parent $tmpl_list);
  41. # define objects and such...
  42. use constant RAND_BOOL => [ 0, 1 ];
  43. my @word_pool = qw(
  44. cool tech blogging politics interesting video
  45. perl python ruby web2.0 sixapart reference link audio
  46. php javascript voip news
  47. );
  48. # Randomize the random number generator to make things nice and consistent.
  49. srand(1);
  50. # these are all the numbers that control how many of what are generated
  51. sub weighted { +shift *$weight_factor }
  52. sub randint { int( rand( +shift ) ) }
  53. my $notifications_per_blog = sub { 3 + randint(20) };
  54. my $blog_count = sub { weighted($blogs) };
  55. my $authors_per_blog = sub { weighted($authors) };
  56. my $categories_per_blog = sub { weighted( $cats + randint(10) ) };
  57. my $entries_per_blog = sub { weighted( $entries + randint(30) ) };
  58. my $comments_per_entry = sub { weighted( randint(10) ) };
  59. my $tags_per_entry = sub { weighted( randint(5) ) };
  60. my $pings_per_trackback = sub { weighted( randint(10) ) };
  61. my %defs = (
  62. 'MT::Blog' => {
  63. table => 'blog',
  64. as_of => 1.0,
  65. needs => [
  66. 'MT::Author' => $authors_per_blog,
  67. 'MT::Category' => $categories_per_blog,
  68. 'MT::Entry' => $entries_per_blog,
  69. 'MT::Template' => \&template_loader,
  70. 'MT::Notification' => $notifications_per_blog
  71. ],
  72. fields => [
  73. field( 'name', \&random_blog_name ),
  74. field(
  75. 'description',
  76. sub {
  77. random_paragraph( int( rand(1) ) );
  78. }
  79. ),
  80. field(
  81. 'archive_type',
  82. [
  83. 'Individual,Category,Monthly', 'Individual,Monthly',
  84. 'Daily,Category,Monthly'
  85. ]
  86. ),
  87. field(
  88. 'archive_type_preferred',
  89. sub {
  90. my @at = split /,/, $this_obj->archive_type;
  91. $at[ int( rand( scalar @at ) ) ];
  92. }
  93. ),
  94. field( 'site_path', sub {"/www/blog_$this_iter"} ),
  95. field(
  96. 'archive_path',
  97. sub { $this_obj->site_path . '/archives' }
  98. ),
  99. field( 'site_url', sub {"http://www.blog${this_iter}.com/"} ),
  100. field( 'archive_url', sub { $this_obj->site_url . 'archives/' } ),
  101. field( 'days_on_index', [ 7, 10, 14 ] ),
  102. field( 'entries_on_index', [ 10, 15, 20 ], 3.2 ),
  103. field(
  104. 'file_extension',
  105. [ '', '', 'html', 'asp', 'jsp', 'php' ]
  106. ),
  107. field( 'email_new_comments', RAND_BOOL ),
  108. field( 'allow_comment_html', RAND_BOOL ),
  109. field( 'autolink_urls', RAND_BOOL ),
  110. field(
  111. 'server_offset',
  112. [ -5, -4, -3, -2, -1, 0, 1, 2, 3, 4, 5 ]
  113. ),
  114. field( 'ping_blogs', RAND_BOOL, 2.5 ),
  115. field( 'ping_others', RAND_BOOL, 2.5 ),
  116. field( 'autodiscover_links', RAND_BOOL, 2.5 ),
  117. field( 'convert_paras', RAND_BOOL ),
  118. field( 'convert_paras_comments', RAND_BOOL ),
  119. field( 'sanitize_spec', [ 'a href,br/,p', '' ], 2.6 ),
  120. field(
  121. 'cc_license',
  122. sub {
  123. if ( MT->version_number < 3.16 ) {
  124. [
  125. '', 'by-nc-sa', 'nd', 'by',
  126. 'pd', 'sa', 'by-nd-nc', 'by-nc'
  127. ];
  128. }
  129. else {
  130. [ '', '' ], # FIXME: URLs for new cc licenses
  131. }
  132. },
  133. 2.6
  134. ),
  135. field( 'is_dynamic', 0, 2.6 ),
  136. field( 'require_comment_emails', RAND_BOOL, 3.0 ),
  137. field( 'allow_unreg_comments', RAND_BOOL, 3.0 ),
  138. field( 'allow_reg_comments', RAND_BOOL, 3.0 ),
  139. field( 'manual_approve_commenters', RAND_BOOL, 3.0 ),
  140. field( 'old_style_archive_links', RAND_BOOL, 3.0 ),
  141. field( 'moderate_unreg_comments', RAND_BOOL, 3.0 ),
  142. field( 'remote_auth_token', [ '', 'some_remote_token' ], 3.0 ),
  143. field( 'children_modified_on', undef, 3.1 ),
  144. field(
  145. 'custom_dynamic_templates',
  146. [ 'none', 'archives', 'custom' ],
  147. 3.1
  148. ),
  149. ],
  150. },
  151. 'MT::Entry' => {
  152. table => 'entry',
  153. as_of => 1.0,
  154. needs => [
  155. 'MT::Comment' => sub {
  156. $this_obj->allow_comments ? $comments_per_entry->() : 0;
  157. },
  158. 'MT::Trackback' => sub { $this_obj->allow_pings ? 1 : 0 },
  159. #'MT::Placement' => [ 0, 1, 1, 1, 2 ],
  160. ],
  161. fields => [
  162. field( 'blog_id', sub { $this_blog->id } ),
  163. field( 'author_id', \&random_author ),
  164. field( 'title', \&random_title ),
  165. field( 'text', sub { random_paragraph( 2 + int( rand(3) ) ) } ),
  166. field( 'text_more', sub { random_paragraph( int( rand(10) ) ) } ),
  167. field( 'excerpt', '' ),
  168. field( 'status', [ 1, 2, 2, 2, 2, 4 ] ),
  169. field( 'keywords', '', 2.5 ),
  170. field( 'tangent_cache', '', 2.5 ),
  171. field( 'allow_pings', [ 0, 1 ] ),
  172. field( 'allow_comments', [ 0, 1, 1, 1 ] ),
  173. field(
  174. 'convert_breaks',
  175. sub {
  176. MT->version_number < 2.6
  177. ? [ 0, 1 ]
  178. : [ '__default__', '0' ];
  179. }
  180. ),
  181. field( 'created_on', \&random_date, 1.0 ),
  182. field( 'basename', undef, 3.0 ), # auto-set upon save
  183. field( 'tags', \&assign_random_tags, 3.3 ),
  184. field( 'categories', \&assign_random_categories, 1.0 ),
  185. ],
  186. },
  187. 'MT::Author' => {
  188. table => 'author',
  189. as_of => 1.0,
  190. needs => [ 'MT::Permission' => \&permission_check, ],
  191. fields => [
  192. field( 'name', \&random_username ),
  193. field( 'nickname', \&random_name ),
  194. field( 'email', \&random_email ),
  195. field( 'url', \&random_url ),
  196. field(
  197. 'type',
  198. sub {
  199. ref $this_parent eq 'MT::Comment' ? 2 : 1;
  200. },
  201. 3.0
  202. ),
  203. field(
  204. 'password',
  205. sub { $this_obj->type == 1 ? crypt( 'Nelson', 'xx' ) : '' }
  206. ),
  207. field(
  208. 'preferred_language',
  209. sub {
  210. $this_obj->type == 1
  211. ? ( $this_obj->name eq 'Melody'
  212. ? 'en_US'
  213. : [ 'en_US', 'en_US', 'en-us', 'fr', 'de' ] )
  214. : undef;
  215. },
  216. 2.5
  217. ),
  218. field(
  219. 'can_create_blog',
  220. sub { $this_obj->type == 1 ? RAND_BOOL : undef }
  221. ),
  222. field(
  223. 'is_superuser',
  224. sub { $this_obj->type == 1 && $this_iter == 1 ? 1 : undef }
  225. ,
  226. 3.2
  227. ),
  228. field(
  229. 'can_view_log',
  230. sub { $this_obj->type == 1 ? RAND_BOOL : undef }
  231. ),
  232. field( 'hint', sub { $this_obj->type == 1 ? 'hint' : undef } ),
  233. field( 'public_key', undef ),
  234. field(
  235. 'api_password',
  236. sub { $this_obj->type == 1 ? 'Nelson' : undef },
  237. 3.2
  238. ),
  239. field( 'remote_auth_username', undef, 3.0 ),
  240. field( 'remote_auth_token', undef, 3.0 ),
  241. ],
  242. },
  243. 'MT::Category' => {
  244. table => 'category',
  245. as_of => 1.0,
  246. needs => [ 'MT::Trackback' => [ 0, 0, 0, 0, 0, 1 ], ],
  247. fields => [
  248. field( 'blog_id', sub { $this_blog->id } ),
  249. field( 'label', \&random_category ),
  250. field( 'author_id', ),
  251. field(
  252. 'description',
  253. sub {
  254. random_paragraph( int( rand(1) ) );
  255. }
  256. ),
  257. field( 'allow_pings', [ 0, 0, 0, 0, 1 ], 1.0 ), # FIXME: version #
  258. field( 'parent', [ 0, 0, 0, \&random_category_id ], 3.1 ),
  259. ],
  260. },
  261. 'MT::Permission' => {
  262. table => 'permission',
  263. as_of => 1.0,
  264. fields => [
  265. field( 'author_id', sub { $this_parent->id } ),
  266. field( 'blog_id', sub { $this_blog->id } ),
  267. field(
  268. 'permissions',
  269. sub {
  270. $this_parent->type == 1
  271. ? ( $this_iter == 1 ? 14334 : &random_role )
  272. : [ 0, 1 ];
  273. }
  274. ),
  275. field( 'entry_prefs', undef ),
  276. ],
  277. },
  278. 'MT::Comment' => {
  279. table => 'comment',
  280. as_of => 1.0,
  281. needs => [ 'MT::Author' => [ 0, 0, 0, 0, 1 ], ],
  282. fields => [
  283. field( 'blog_id', sub { $this_parent->blog_id } ),
  284. field( 'entry_id', sub { $this_parent->id } ),
  285. field( 'author', \&random_name ),
  286. field( 'commenter_id', \&random_commenter, 3.0 ),
  287. field( 'email', \&random_email ),
  288. field( 'url', \&random_url ),
  289. field(
  290. 'text',
  291. sub {
  292. random_paragraph( 1 + int( rand(2) ) );
  293. }
  294. ),
  295. field( 'ip', \&random_ip ),
  296. field( 'visible', [ 0, 1, 1, 1, 1 ], 3.0 ),
  297. field( 'junk_status', [ -1, 1, 1, 1, 1 ], 3.2 ),
  298. field(
  299. 'junk_score',
  300. sub { $this_obj->junk_status == -1 ? rand(2) * -1 : 0 },
  301. 3.2
  302. ),
  303. field(
  304. 'junk_log',
  305. sub {
  306. $this_obj->junk_status == -1
  307. ? 'Random ('
  308. . $this_obj->junk_score
  309. . "): Randomly scored as junk\n"
  310. : '';
  311. },
  312. 3.2
  313. ),
  314. ],
  315. },
  316. 'MT::Trackback' => {
  317. table => 'trackback',
  318. as_of => 1.2, # ??
  319. needs => [ 'MT::TBPing' => $pings_per_trackback, ],
  320. fields => [
  321. field( 'blog_id', sub { $this_parent->blog_id } ),
  322. field( 'title', \&random_title ),
  323. field( 'description', undef ),
  324. field( 'rss_file', undef ),
  325. field( 'url', undef ),
  326. field(
  327. 'entry_id',
  328. sub {
  329. ref $this_parent eq 'MT::Entry' ? $this_parent->id : 0;
  330. }
  331. ),
  332. field(
  333. 'category_id',
  334. sub {
  335. ref $this_parent eq 'MT::Category' ? $this_parent->id : 0;
  336. }
  337. ),
  338. field( 'is_disabled', 0 ),
  339. field( 'passphrase', undef ),
  340. ],
  341. },
  342. 'MT::TBPing' => {
  343. table => 'tbping',
  344. as_of => 1.2, # ??
  345. fields => [
  346. field( 'blog_id', sub { $this_parent->blog_id } ),
  347. field( 'tb_id', sub { $this_parent->id } ),
  348. field( 'title', \&random_title ),
  349. field( 'excerpt', \&random_paragraph ),
  350. field( 'source_url', \&random_url ),
  351. field( 'ip', \&random_ip ),
  352. field( 'blog_name', \&random_blog_name ),
  353. field( 'visible', [ 0, 1, 1, 1, 1 ], 3.0 ),
  354. field( 'junk_status', [ -1, 1, 1, 1, 1 ], 3.2 ),
  355. field(
  356. 'junk_score',
  357. sub {
  358. $this_obj->junk_status == -1 ? rand(2) * -1 : 0;
  359. },
  360. 3.2
  361. ),
  362. field(
  363. 'junk_log',
  364. sub {
  365. $this_obj->junk_status == -1
  366. ? 'Random ('
  367. . $this_obj->junk_score
  368. . "): Randomly scored as junk\n"
  369. : '';
  370. },
  371. 3.2
  372. ),
  373. ],
  374. },
  375. 'MT::Template' => {
  376. table => 'template',
  377. as_of => 1.0,
  378. # fields => [
  379. # field('build_dynamic', [], 3.1),
  380. # ],
  381. },
  382. 'MT::TemplateMap' => { table => 'templatemap', as_of => 2.0, },
  383. 'MT::Log' => {
  384. table => 'log',
  385. as_of => 1.0,
  386. # fields => [
  387. # field('blog_id', [], 3.2),
  388. # ],
  389. },
  390. 'MT::Session' => { table => 'session', as_of => 3.0, },
  391. 'MT::Notification' => {
  392. table => 'notification',
  393. as_of => 1.0,
  394. fields => [
  395. field( 'blog_id', sub { $this_parent->id } ),
  396. field( 'name', \&random_name ),
  397. field( 'email', \&random_email ),
  398. field( 'url', \&random_url ),
  399. ],
  400. },
  401. 'MT::Placement' => { table => 'placement', as_of => 2.0, },
  402. 'MT::FileInfo' => { table => 'fileinfo', as_of => 3.1, },
  403. 'MT::PluginData' => { table => 'plugindata', as_of => 2.6, },
  404. 'MT::Tag' => { table => 'tag', as_of => 3.3, },
  405. 'MT::ObjectTag' => { table => 'objecttag', as_of => 3.3, },
  406. # 'MT::Config' => {
  407. # table => 'config',
  408. # as_of => 3.2,
  409. # },
  410. );
  411. if ($destroy) {
  412. unless ($bypass_confirm) {
  413. print <<'WARNING';
  414. ** WARNING **
  415. You've chosen to clear all existing data in your database and populate
  416. it with random, generated data. The system administrator login will be
  417. Melody/Nelson. This tool is mainly used for testing MT performance and
  418. usability with varying sizes of data.
  419. To continue, type OK and press enter.
  420. WARNING
  421. my $confirm = <STDIN>;
  422. chomp $confirm;
  423. exit unless $confirm eq 'OK';
  424. }
  425. clean();
  426. }
  427. # kick off the build process
  428. build( 'MT::Blog', $blog_count->(), 0 );
  429. sub field {
  430. my ( $name, $inputs, $as_of ) = @_;
  431. my $def = { inputs => $inputs };
  432. $def->{as_of} = $as_of if defined $as_of;
  433. ( $name, $def );
  434. }
  435. sub clean {
  436. # CLEAR ANY EXISTING DATA
  437. print "Clearing existing data...\n" unless $silent;
  438. my $driver = MT::Object->driver();
  439. if ( my $dbh = $driver->rw_handle ) {
  440. my @tables = map { $defs{$_}{table} } keys %defs;
  441. foreach (@tables) {
  442. print "\tWiping $_\n" unless $silent;
  443. $dbh->do("delete from mt_$_");
  444. }
  445. if ( $driver->isa('MT::ObjectDriver::Driver::DBD::Pg') ) {
  446. # reset sequences
  447. $dbh->do("drop sequence mt_${_}_id") foreach @tables;
  448. $dbh->do("create sequence mt_${_}_id") foreach @tables;
  449. }
  450. }
  451. } ## end sub clean
  452. sub build {
  453. my ( $pkg, $num, $depth ) = @_;
  454. my $def = $defs{$pkg};
  455. return unless $def->{as_of} <= MT->version_number();
  456. print( ( "\t" x $depth ) . "Creating $num $pkg objects...\n" )
  457. unless $silent;
  458. local $this_obj = $this_obj;
  459. local $this_parent = $this_obj;
  460. local $this_iter;
  461. for ( my $i = 0; $i < $num; $i++ ) {
  462. $this_iter = $i + 1; # always indexed from 1...
  463. my $obj;
  464. # special case for MT::Author...
  465. if ( $pkg eq 'MT::Author' ) {
  466. my $name = random_username();
  467. my $user = MT::Author->load( { name => $name, type => 1 } );
  468. if ($user) {
  469. $obj = $user;
  470. }
  471. }
  472. unless ($obj) {
  473. no strict 'refs';
  474. no warnings;
  475. eval("require $pkg") unless defined *{"$pkg::"};
  476. $obj = $pkg->new();
  477. }
  478. $this_obj = $obj;
  479. if ( !$obj->id ) {
  480. my @fields = @{ $def->{fields} };
  481. while ( my ( $fld, $fld_def ) = ( shift @fields, shift @fields ) )
  482. {
  483. if (
  484. ( !exists $fld_def->{as_of} )
  485. || ( $fld_def->{as_of}
  486. && ( $fld_def->{as_of} <= $MT::VERSION ) )
  487. )
  488. {
  489. my $input = $fld_def->{inputs};
  490. while ( ref $input ) {
  491. if ( ref $input eq 'ARRAY' ) {
  492. $input
  493. = $input->[ int( rand( scalar @$input ) ) ];
  494. }
  495. if ( ref $input eq 'CODE' ) {
  496. $input = $input->();
  497. }
  498. }
  499. print "\tsetting $fld to [$input]\n"
  500. if !$silent && defined $input;
  501. $obj->$fld($input) if defined $input;
  502. } ## end if ( ( !exists $fld_def...))
  503. last unless @fields;
  504. } ## end while ( my ( $fld, $fld_def...))
  505. $obj->save or die $obj->errstr;
  506. } ## end if ( !$obj->id )
  507. if ( $pkg eq 'MT::Blog' ) {
  508. $this_blog = $obj; # assign for use in other objects...
  509. }
  510. # process needs...
  511. if ( my $needs = $def->{needs} ) {
  512. my @needs = @$needs;
  513. while ( my ( $pkg, $num ) = ( shift @needs, shift @needs ) ) {
  514. while ( ref $num ) {
  515. if ( ref $num eq 'ARRAY' ) {
  516. $num = $num->[ int( rand( scalar @$num ) ) ];
  517. }
  518. if ( ref $num eq 'CODE' ) {
  519. $num = $num->();
  520. }
  521. }
  522. if ($num) {
  523. build( $pkg, $num, $depth + 1 );
  524. }
  525. last unless @needs;
  526. }
  527. }
  528. } ## end for ( my $i = 0; $i < $num...)
  529. } ## end sub build
  530. sub permission_check {
  531. my $author = $this_obj;
  532. my $blog = $this_blog;
  533. require MT::Permission;
  534. my $num = MT::Permission->count(
  535. { author_id => $author->id, blog_id => $blog->id } );
  536. $num ? 0 : 1;
  537. }
  538. sub template_loader {
  539. my $blog = $this_blog;
  540. print "\tCreating templates...\n" unless $silent;
  541. $blog->create_default_templates();
  542. 0;
  543. }
  544. ## some random routines
  545. sub random_name {
  546. $this_iter == 1 ? 'Melody Nelson' : 'Joe ' . $this_iter;
  547. }
  548. sub random_email {
  549. "user" . $this_iter . '@gmail.com';
  550. }
  551. sub random_paragraph {
  552. my $num = shift;
  553. $num ||= 1 unless defined $num;
  554. ( "Lorem ipsum blah blah blah.\n\n" x $num ) || '';
  555. }
  556. sub random_username {
  557. $this_iter == 1 ? 'Melody' : 'user' . $this_iter;
  558. }
  559. sub random_blog_name {
  560. 'Weblog ' . $this_iter;
  561. }
  562. sub random_category_id {
  563. }
  564. sub random_category {
  565. 'Category ' . $this_iter;
  566. }
  567. sub random_title {
  568. 'Title for ' . ( ref $this_obj ) . ' #' . $this_iter;
  569. }
  570. sub random_commenter {
  571. my @c = MT::Author->load( { type => 2 } );
  572. return unless @c;
  573. my $c = $c[ int( rand( scalar @c ) ) ];
  574. $c->id;
  575. }
  576. sub random_author {
  577. my @a = MT::Author->load( { type => 1 } );
  578. my $a = $a[ int( rand( scalar @a ) ) ];
  579. $a->id;
  580. }
  581. sub random_role {
  582. # [ 1, 'comment', 'Post Comments', ],
  583. # [ 4096, 'administer_blog', 'Blog Administrator'],
  584. # [ 2, 'post', 'Post', ],
  585. # [ 4, 'upload', 'Upload File', ],
  586. # [ 8, 'edit_all_posts', 'Edit All Posts', ],
  587. # [ 16, 'edit_templates', 'Manage Templates', ],
  588. ## [ 32, 'edit_authors', 'Edit Authors & Permissions', ],
  589. # [ 64, 'edit_config', 'Configure Weblog', ],
  590. # [ 128, 'rebuild', 'Rebuild Files', ],
  591. # [ 256, 'send_notifications', 'Send Notifications', ],
  592. # [ 512, 'edit_categories', 'Manage Categories', ],
  593. # [ 1024, 'edit_notifications', 'Manage Notification List' ],
  594. # [ 2048, 'not_comment', ''], # not a real permission but a denial thereeof
  595. # [ 8192, 'view_blog_log', 'View Activity Log For This Weblog']
  596. my @roles;
  597. if ( $this_parent->type == 2 ) {
  598. @roles = (
  599. "'comment'", "'comment'",
  600. "'comment'", "'comment'",
  601. "'not_comment'"
  602. );
  603. }
  604. else {
  605. if ( MT->version_number >= 3.2 ) {
  606. push @roles, ( "'post'", "'post'", "'post'", "'post'" );
  607. push @roles, ("'post','upload'");
  608. push @roles, ("'post','upload','edit_all_posts'");
  609. push @roles,
  610. ("'edit_templates','edit_all_posts','post','upload'");
  611. push @roles,
  612. (
  613. "'edit_config','edit_templates','edit_all_posts','post','upload'"
  614. );
  615. push @roles,
  616. (
  617. "'edit_categories','edit_config','edit_templates','edit_all_posts','post','upload'"
  618. );
  619. push @roles, ("'view_blog_log','edit_config'");
  620. }
  621. else {
  622. push @roles, ( "'post'", "'post'", "'post'", "'post'" );
  623. push @roles, ("'post','upload'");
  624. push @roles, ("'edit_all_posts','post','upload'");
  625. push @roles,
  626. ("'edit_templates','edit_all_posts','post','upload'");
  627. push @roles,
  628. (
  629. "'edit_config','edit_templates','edit_all_posts','post','upload'"
  630. );
  631. push @roles,
  632. (
  633. "'edit_categories','edit_templates','edit_all_posts','post','upload'"
  634. );
  635. push @roles, ("'edit_config','edit_authors','edit_all_posts'");
  636. }
  637. } ## end else [ if ( $this_parent->type...)]
  638. $roles[ int( rand( scalar @roles ) ) ];
  639. } ## end sub random_role
  640. sub random_url {
  641. 'http://www.example.com/user' . $this_iter . '/';
  642. }
  643. sub random_ip {
  644. "192.168.0." . $this_iter;
  645. }
  646. sub assign_random_tags {
  647. my @tags;
  648. my $count = $tags_per_entry->();
  649. for ( my $i = 0; $i < $count; $i++ ) {
  650. push @tags, $word_pool[ rand( scalar @word_pool ) ];
  651. }
  652. $this_obj->tags(@tags);
  653. undef;
  654. }
  655. sub assign_random_categories {
  656. my @count = ( 0, 1, 1, 1, 1, 2 );
  657. # this is the last field; go ahead and save this object so
  658. # we have an entry id.
  659. $this_obj->save;
  660. my $count = $count[ int( rand( scalar @count ) ) ];
  661. require MT::Category;
  662. require MT::Placement;
  663. my @cats = MT::Category->load( { blog_id => $this_obj->blog_id } );
  664. my %used;
  665. $count = scalar @cats if scalar @cats < $count;
  666. for ( my $i = 0; $i < $count; $i++ ) {
  667. my $cat = $cats[ int( rand( scalar @cats ) ) ];
  668. next if $used{ $cat->id };
  669. my $place = MT::Placement->new;
  670. $place->category_id( $cat->id );
  671. $place->blog_id( $this_obj->blog_id );
  672. $place->entry_id( $this_obj->id );
  673. $place->is_primary( %used ? 0 : 1 );
  674. $place->save or die $place->errstr;
  675. $used{ $cat->id } = 1;
  676. }
  677. undef;
  678. } ## end sub assign_random_categories
  679. sub random_date {
  680. my @date = localtime( time - int( rand( $years * 365 * 24 * 60 * 60 ) ) );
  681. return
  682. sprintf( "%04d%02d%02d%02d%02d%02d",
  683. $date[5] + 1900,
  684. $date[4] + 1,
  685. $date[3], $date[2], $date[1], $date[0] );
  686. }
  687. 1;
  688. __END__
  689. =head1 NAME
  690. populate - A utility for creating pseudorandom weblog data.
  691. =head1 SYNOPSIS
  692. # Create 3 'random' weblogs with ~500 entries each
  693. tools/populate --blogs 3 --destroy --yes-really
  694. # Adds an addtional weblog
  695. tools/populate --blogs 1
  696. =head1 OPTIONS
  697. =over 4
  698. =item B<--destroy>
  699. Wipes your existing database before populating it. This switch is confirmed
  700. before execution. If this is done, the system admin becomes Melody Nelson.
  701. =item --yes-really
  702. Bypasses the confirmation for the '--destroy' switch.
  703. =item --blogs E<lt>nE<gt>
  704. Lets you specify the number of weblogs to create (default is 1).
  705. =item --authors E<lt>nE<gt>
  706. Specifies the number of user records to create (default is 3).
  707. =item --entries E<lt>nE<gt>
  708. Specifies the number of entries (approximately) to create (default is 500).
  709. =item --categories E<lt>nE<gt>
  710. Specifies the number of categories (approximately) to create (default is 5).
  711. =item --years E<lt>nE<gt>
  712. Specifies the number of years to post-date entry creation (default is 1).
  713. =back