mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-09 19:18:22 +01:00
72 lines
2.2 KiB
Perl
Executable File
72 lines
2.2 KiB
Perl
Executable File
#!/usr/bin/perl
|
|
|
|
# Copyright (C) 2003 Jean-Louis BERGAMO <jlb@j1b.org>
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
# ce script prend l'intergralite des adherents valide et les mets dans
|
|
# une mailing-liste. ce script est utilie si l'on souhaite avoir une
|
|
# mailing-liste avec uniquement les adherents valides.
|
|
|
|
use DBI;
|
|
use strict;
|
|
# get the command line option
|
|
use Getopt::Long;
|
|
|
|
# command line option hash table
|
|
my %optctl=();
|
|
# get command line options
|
|
GetOptions(\%optctl,"help!","host=s","db=s","user=s","pass=s","type=s","cotis!","crypt!");
|
|
if (defined $optctl{'help'}){
|
|
&usage();
|
|
}
|
|
my $host=$optctl{'host'}||'localhost';
|
|
my $dbname=$optctl{'db'}||'dolibarr';
|
|
my $user=$optctl{'user'}||'dolibarr';
|
|
my $pass=$optctl{'pass'}||'';
|
|
my $type=$optctl{'type'}||'mysql';
|
|
#my $ml=$optctl{'ml'}||&usage();
|
|
my @adh=();
|
|
my @ml_adh=();
|
|
|
|
my $dbh = DBI->connect("dbi:$type:dbname=$dbname;host=$host",$user,$pass) || die $DBI::errstr ;
|
|
|
|
my $sql = 'SELECT login,pass FROM llx_adherent WHERE statut=1';
|
|
|
|
if (defined $optctl{'cotis'}){
|
|
$sql.=" AND datefin > now()";
|
|
}
|
|
|
|
my $sth = $dbh->prepare("$sql") || die $dbh->errstr ;
|
|
$sth->execute;
|
|
|
|
# get login,pass of each adherents
|
|
while (my @row = $sth->fetchrow_array ){
|
|
if (defined $optctl{'crypt'}){
|
|
print "$row[0]:",crypt($row[1],join '', ('.', '/', 0..9,'A'..'Z', 'a'..'z')[rand 64, rand 64]),"\n";
|
|
}else{
|
|
print "$row[0]:$row[1]\n";
|
|
}
|
|
}
|
|
|
|
$dbh->disconnect();
|
|
|
|
sub usage{
|
|
print "$0 [--help] [--host] [--db] [--user] [--pass] [--cotis] [--crypt]\n";
|
|
print " cotis : select only adherents with cotisations up-to-date\n";
|
|
print "\n";
|
|
exit (1);
|
|
}
|