summaryrefslogtreecommitdiff
path: root/mailing_list.php
blob: c09baae259ca2ee1865db81c8fb07dc1f4a9e7a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<?php
/**
 * $Header$
 * Copyright (c) bitweaver Group
 * All Rights Reserved. See below for details and a complete list of authors.
 * Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See http://www.gnu.org/copyleft/lesser.html for details.
 *
 * @package boards
 * @subpackage functions
 */

/**
 * required setup
 */
require_once '../kernel/includes/setup_inc.php';
require_once( BOARDS_PKG_CLASS_PATH.'BitBoardTopic.php' );
require_once( BOARDS_PKG_CLASS_PATH.'BitBoardPost.php' );
require_once( BOARDS_PKG_CLASS_PATH.'BitBoard.php' );
require_once( BOARDS_PKG_INCLUDE_PATH.'lookup_inc.php' );
require_once( BOARDS_PKG_INCLUDE_PATH.'mailman_lib.php' );

// Is package installed and enabled
$gBitSystem->verifyPackage( 'boards' );

// Verify we found a board
if( !$gContent->isValid() ) {
  $gBitSystem->fatalError(tra("Error: No such board."));
}

// Now check permissions to access this page
$gContent->verifyViewPermission();

if( $boardSyncInbox = BitBoard::getBoardSyncInbox() ) {
	$gBitSmarty->assign( 'boardSyncInbox', $boardSyncInbox );
}

if( !empty( $_REQUEST['create_list'] ) ) {
	//------ Email List ------//
	if( !($error = mailman_newlist( [ 'listname' => $_REQUEST['boards_mailing_list'], 'admin-password'=>$_REQUEST['boards_mailing_list_password'], 'listadmin-addr'=>$gBitUser->getField( 'email' ) ] )) ) {
		$gContent->storePreference( 'boards_mailing_list', !empty( $_REQUEST['boards_mailing_list'] ) ? $_REQUEST['boards_mailing_list'] : null );
		$gContent->storePreference( 'boards_mailing_list_password', $_REQUEST['boards_mailing_list_password'] );
	} else {
		$gBitSmarty->assign( 'errorMsg', $error );
	}

//		if( $gContent->getPreference( 'boards_mailing_list' ) && $_REQUEST['boards_mailing_list'] != $gContent->getPreference( 'boards_mailing_list' ) ) {
			// Name change
//			groups_mailman_rename( $gContent->getPreference( 'boards_mailing_list' ), $_REQUEST['boards_mailing_list'] );
//		}

} elseif( !empty( $_REQUEST['delete_list'] ) ) {
	if( $gContent->getPreference( 'boards_mailing_list' ) ) {
		if( empty( $_REQUEST['confirm'] ) ) {
			$formHash['delete_list'] = true;
			$formHash['b'] = $gContent->getField( 'board_id' );
			$gBitSystem->confirmDialog(	$formHash,
				[
					'warning' => tra('Are you sure you want to delete this mailing list?') . ' ' . $gContent->getTitle(),
					'error' => tra('This cannot be undone!'),
				],
			);
		} else {
			if( !($error = mailman_rmlist( $gContent->getPreference( 'boards_mailing_list' ) )) ) {
				$gContent->storePreference( 'boards_mailing_list', null );
				$gContent->storePreference( 'boards_mailing_list_password', null );
				bit_redirect( BOARDS_PKG_URL."mailing_list.php?b=".$gContent->getField( 'board_id' ) );
			} else {
				$gBitSmarty->assign( 'errorMsg', $error );
			}
		}
	}
} elseif( !empty( $_REQUEST['save_list_address'] ) ) {
	$gContent->storePreference( 'board_sync_list_address', (!empty( $_REQUEST['board_sync_list_address'] ) ? $_REQUEST['board_sync_list_address'] : null ) );
} elseif( $gContent->getPreference( 'boards_mailing_list' ) ) {
	// check for submits that need boards_mailing_list
	if( !empty( $_REQUEST['subscribe_boardsync'] ) ) {
	  if( $gContent->getPreference('board_sync_list_address') ) {
		mailman_addmember( $gContent->getPreference( 'boards_mailing_list' ), $boardSyncInbox );
		mailman_setmoderator( $gContent->getPreference( 'boards_mailing_list' ), $boardSyncInbox );
	  }
	} elseif( !empty( $_REQUEST['unsubscribe_boardsync'] ) ) {
		if( $gContent->getPreference('board_sync_list_address') ) {
			mailman_remove_member( $gContent->getPreference( 'boards_mailing_list' ), $boardSyncInbox );
		}
	} elseif( !empty( $_REQUEST['subscribe'] ) ) {
		mailman_addmember( $gContent->getPreference( 'boards_mailing_list' ), $gBitUser->getField( 'email' ) );
	} elseif( !empty( $_REQUEST['unsubscribe'] ) ) {
		mailman_remove_member( $gContent->getPreference( 'boards_mailing_list' ), $gBitUser->getField( 'email' ) );
	}
}

if( $gContent->getBoardMailingList() ) {
	$gBitSmarty->assign( 'boardsMailingList', $gContent->getBoardMailingList() );
	if ( $gContent->hasUserPermission( 'p_boards_boards_members_view' ) ){
		$members = mailman_list_members( $gContent->getPreference( 'boards_mailing_list' ) );
		$gBitSmarty->assign( 'listMembers', $members );
	}
} else {
	$gBitSmarty->assign( 'suggestedListName', preg_replace( '/[^a-z0-9]/', '', strtolower( $gContent->getTitle() ) ) );
}

// display
$gBitSmarty->assign( 'board', $gContent );
$gBitSystem->display( "bitpackage:boards/mailing_list.tpl", $gContent->getTitle() ." ".  tra( 'Message Board Mailing List' ) , [ 'display_mode' => 'list' ]);
?>